From 927ace37f9a4bdb402356b291e44ac009fd96d36 Mon Sep 17 00:00:00 2001 From: Camila Ayres Date: Thu, 12 Sep 2024 17:34:29 +0200 Subject: [PATCH] Match the apps menu list look with the user's list look. Signed-off-by: Camila Ayres --- src/gui/tray/Window.qml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index df7fc5de6..1686ce882 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -587,8 +587,8 @@ ApplicationWindow { background: Rectangle { border.color: palette.dark + radius: Style.currentAccountButtonRadius color: palette.window - radius: 2 } contentItem: ScrollView { @@ -618,6 +618,12 @@ ApplicationWindow { Accessible.role: Accessible.MenuItem Accessible.name: qsTr("Open %1 in browser").arg(model.appName) Accessible.onPressAction: appEntry.triggered() + + background: Rectangle { + anchors.fill: parent + anchors.margins: 1 + color: (appEntry.hovered || appEntry.visualFocus) ? palette.highlight : palette.window + } } } } -- 2.30.2