From 3a7270f69c9e7386d55580d67f2755dce552e50e Mon Sep 17 00:00:00 2001 From: Sho Date: Sun, 2 Aug 2026 14:30:40 +0900 Subject: [PATCH] fix: ensure separator line underneath app name is always visible in system tray context menu --- quickshell/modules/topbar/TopRightBar.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quickshell/modules/topbar/TopRightBar.qml b/quickshell/modules/topbar/TopRightBar.qml index 2dee93e..7dccb4a 100644 --- a/quickshell/modules/topbar/TopRightBar.qml +++ b/quickshell/modules/topbar/TopRightBar.qml @@ -2876,12 +2876,13 @@ Connections { } } - // Solid Divider (Only visible if app has menu items underneath) + // Solid Divider underneath the app name Rectangle { Layout.fillWidth: true Layout.preferredHeight: 1 color: Theme.currentLine - visible: (root.activeTrayItem && root.activeTrayItem.hasMenu && root.activeTrayMenuOpener && root.activeTrayMenuOpener.children && root.activeTrayMenuOpener.children.length > 0) + Layout.topMargin: 2 + Layout.bottomMargin: 2 } // Render Pure Native DBus App Menu Items (Pre-Cached Real Time Model)