mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-08 20:55:16 +00:00
2.12.1-dev
This commit is contained in:
@@ -16,5 +16,7 @@ NIconButton {
|
|||||||
baseSize: Style.capsuleHeight
|
baseSize: Style.capsuleHeight
|
||||||
colorBg: ScreenRecorderService.isRecording ? Color.mPrimary : (Settings.data.bar.showCapsule ? Color.mSurfaceVariant : Color.transparent)
|
colorBg: ScreenRecorderService.isRecording ? Color.mPrimary : (Settings.data.bar.showCapsule ? Color.mSurfaceVariant : Color.transparent)
|
||||||
colorFg: ScreenRecorderService.isRecording ? Color.mOnPrimary : Color.mOnSurface
|
colorFg: ScreenRecorderService.isRecording ? Color.mOnPrimary : Color.mOnSurface
|
||||||
|
colorBorder: Color.transparent
|
||||||
|
colorBorderHover: Color.transparent
|
||||||
onClicked: ScreenRecorderService.toggleRecording()
|
onClicked: ScreenRecorderService.toggleRecording()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,8 +39,7 @@ Singleton {
|
|||||||
if (widget.widgetId === widgetId && widget.screenName === screenName && widget.section === section) {
|
if (widget.widgetId === widgetId && widget.screenName === screenName && widget.section === section) {
|
||||||
if (index === null) {
|
if (index === null) {
|
||||||
return widget.instance
|
return widget.instance
|
||||||
}
|
} else if (widget.index == index) {
|
||||||
else if (widget.index == index) {
|
|
||||||
return widget.instance
|
return widget.instance
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ Singleton {
|
|||||||
id: root
|
id: root
|
||||||
|
|
||||||
// Public properties
|
// Public properties
|
||||||
property string baseVersion: "2.12.0"
|
property string baseVersion: "2.12.1"
|
||||||
property bool isDevelopment: true
|
property bool isDevelopment: true
|
||||||
|
|
||||||
property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`
|
property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`
|
||||||
|
|||||||
Reference in New Issue
Block a user