mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-08-01 19:18:28 -04:00
bar(IdleInhibitor): Color icon when activated (#2395)
This commit is contained in:
@@ -7,6 +7,9 @@ import qs.Widgets
|
||||
BasePill {
|
||||
id: root
|
||||
|
||||
property color idleColor: Theme.widgetTextColor
|
||||
property color inhibitColor: Theme.primary
|
||||
|
||||
content: Component {
|
||||
Item {
|
||||
implicitWidth: icon.width
|
||||
@@ -17,7 +20,7 @@ BasePill {
|
||||
anchors.centerIn: parent
|
||||
name: SessionService.idleInhibited ? "motion_sensor_active" : "motion_sensor_idle"
|
||||
size: Theme.barIconSize(root.barThickness, -4, root.barConfig?.maximizeWidgetIcons, root.barConfig?.iconScale)
|
||||
color: Theme.widgetTextColor
|
||||
color: SessionService.idleInhibited ? inhibitColor : idleColor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user