From 2c7d88e5d82d136c0494082e79d6f9be56f62fcd Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Wed, 15 Apr 2026 11:20:07 +0200 Subject: [PATCH] Show down-arrow on status bar hover in convergence Desktop users have no visual cue that the top bar opens quick settings. Fade in a small arrow-down icon at the bottom center when the mouse hovers, matching the arrow-up hint on the favourites bar. --- .../mobileshell/qml/statusbar/StatusBar.qml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/components/mobileshell/qml/statusbar/StatusBar.qml b/components/mobileshell/qml/statusbar/StatusBar.qml index ac46eb78..93d00980 100644 --- a/components/mobileshell/qml/statusbar/StatusBar.qml +++ b/components/mobileshell/qml/statusbar/StatusBar.qml @@ -211,4 +211,23 @@ Item { } } } + + // Down-arrow hover hint for convergence mode + Kirigami.Icon { + z: 2 + source: 'arrow-down' + implicitHeight: Kirigami.Units.iconSizes.small + implicitWidth: Kirigami.Units.iconSizes.small + + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: Kirigami.Units.smallSpacing + + visible: ShellSettings.Settings.convergenceModeEnabled + opacity: statusBarHover.hovered ? 0.8 : 0 + + Behavior on opacity { + NumberAnimation { duration: Kirigami.Units.shortDuration } + } + } }