Reveal all hidden tooling when hovering over the center part of the bar

This commit is contained in:
David Heinemeier Hansson
2026-06-03 08:23:32 +02:00
parent ddc013aea9
commit 198d01f8bc
2 changed files with 15 additions and 2 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ BarWidget {
property bool indicatorAreaHovered: false
property bool indicatorItemHovered: false
readonly property bool alwaysShowIndicators: setting("alwaysShow", false) === true
readonly property bool revealInactiveIndicators: alwaysShowIndicators || indicatorAreaHovered || indicatorItemHovered
readonly property bool revealInactiveIndicators: alwaysShowIndicators || indicatorAreaHovered || indicatorItemHovered || (bar && bar.centerSectionHovered === true)
signal refreshRequested()