From e72beb729673cf8e2220a38f9fd5b7b752886e38 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Sun, 19 Apr 2026 09:22:53 +0200 Subject: [PATCH] Show status bar down-arrow at rest in convergence --- components/mobileshell/qml/statusbar/StatusBar.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/mobileshell/qml/statusbar/StatusBar.qml b/components/mobileshell/qml/statusbar/StatusBar.qml index f504301e..80c6619e 100644 --- a/components/mobileshell/qml/statusbar/StatusBar.qml +++ b/components/mobileshell/qml/statusbar/StatusBar.qml @@ -212,7 +212,7 @@ Item { } } - // Down-arrow hover hint for convergence mode + // Down-arrow hint for convergence mode Kirigami.Icon { z: 2 source: 'arrow-down' @@ -224,7 +224,7 @@ Item { anchors.bottomMargin: Kirigami.Units.smallSpacing visible: ShellSettings.Settings.convergenceModeEnabled - opacity: statusBarHover.hovered ? 0.8 : 0 + opacity: statusBarHover.hovered ? 0.6 : 0.2 Behavior on opacity { NumberAnimation { duration: Kirigami.Units.shortDuration }