From ba39d02537324ffd7517c7e1b65621bdb2c0eaee Mon Sep 17 00:00:00 2001 From: quadbyte Date: Mon, 18 Aug 2025 20:57:33 -0400 Subject: [PATCH] TrayMenu: proper divider --- Modules/Bar/TrayMenu.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Modules/Bar/TrayMenu.qml b/Modules/Bar/TrayMenu.qml index 89fd4f3..be890e0 100644 --- a/Modules/Bar/TrayMenu.qml +++ b/Modules/Bar/TrayMenu.qml @@ -15,7 +15,7 @@ PopupWindow { property bool isSubMenu: false property bool isHovered: rootMouseArea.containsMouse - implicitWidth: 200 * scaling + implicitWidth: 180 * scaling // Use the content height of the Flickable for implicit height implicitHeight: Math.min(Screen.height * 0.9, flickable.contentHeight + (Style.marginM * 2 * scaling)) @@ -127,7 +127,6 @@ PopupWindow { NDivider { anchors.centerIn: parent width: parent.width - (Style.marginM * scaling * 2) - color: Color.mPrimary visible: modelData?.isSeparator ?? false }