Compare commits

..

No commits in common. "45704cb102adb831e89421c5911b6a2eb03a7b5c" and "6eff8710fd50252fd67c6eb8642cf84be3b5a9aa" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View file

@ -5,7 +5,7 @@ import "." as M
M.BarIcon { M.BarIcon {
id: root 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: { tooltip: {
const parts = ["Idle inhibition: " + (root.active ? "active" : "inactive")]; const parts = ["Idle inhibition: " + (root.active ? "active" : "inactive")];
if (root._inhibitors) if (root._inhibitors)

View file

@ -8,7 +8,6 @@ import "." as M
M.BarSection { M.BarSection {
id: root id: root
spacing: M.Theme.moduleSpacing spacing: M.Theme.moduleSpacing
visible: root._title !== ""
tooltip: root._appId ? root._appId + "\n" + root._title : root._title tooltip: root._appId ? root._appId + "\n" + root._title : root._title