Add always show option

This commit is contained in:
Ryan Hughes
2026-05-22 16:16:48 -04:00
parent 952b33b981
commit 877bef80d0
5 changed files with 11 additions and 6 deletions
+2 -1
View File
@@ -16,7 +16,8 @@ BarWidget {
property var indicatorActiveStates: ({})
property bool indicatorAreaHovered: false
property bool indicatorItemHovered: false
readonly property bool revealInactiveIndicators: indicatorAreaHovered || indicatorItemHovered
readonly property bool alwaysShowIndicators: setting("alwaysShow", false) === true
readonly property bool revealInactiveIndicators: alwaysShowIndicators || indicatorAreaHovered || indicatorItemHovered
signal refreshRequested()