Add hover highlight to status bar in convergence mode

Mouse users had no visual cue that clicking the status bar
toggles the action drawer. Add a subtle background highlight
on hover so the bar signals interactivity.
This commit is contained in:
Marco Allegretti 2026-04-09 11:43:51 +02:00
parent db18022a9b
commit 73b4ecea57

View file

@ -88,6 +88,17 @@ Item {
background: Rectangle {
id: panelBackground
color: backgroundColor
// Hover highlight in convergence mode to indicate the bar is clickable
Rectangle {
anchors.fill: parent
color: Qt.rgba(255, 255, 255, 0.1)
visible: ShellSettings.Settings.convergenceModeEnabled && statusBarHover.hovered
}
HoverHandler {
id: statusBarHover
}
}
contentItem: ColumnLayout {