Compare commits
2 changed files with 1 additions and 2 deletions
|
|
@ -5,7 +5,7 @@ import "." as M
|
|||
|
||||
M.BarIcon {
|
||||
id: root
|
||||
color: root.active ? M.Theme.base09 : (parent?.accentColor ?? M.Theme.base05)
|
||||
color: root.active ? (parent?.accentColor ?? M.Theme.base05) : M.Theme.base04
|
||||
tooltip: {
|
||||
const parts = ["Idle inhibition: " + (root.active ? "active" : "inactive")];
|
||||
if (root._inhibitors)
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import "." as M
|
|||
M.BarSection {
|
||||
id: root
|
||||
spacing: M.Theme.moduleSpacing
|
||||
visible: root._title !== ""
|
||||
|
||||
tooltip: root._appId ? root._appId + "\n" + root._title : root._title
|
||||
|
||||
|
|
|
|||
Reference in a new issue