From 4f199c0240f352b4d2a0221082ee73a1286d1593 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Thu, 7 Aug 2025 20:21:33 -0400 Subject: [PATCH] Test: added a slim border below the bar (to be discussed) --- Bar/Bar.qml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/Bar/Bar.qml b/Bar/Bar.qml index 653f6e9..beec488 100644 --- a/Bar/Bar.qml +++ b/Bar/Bar.qml @@ -14,12 +14,10 @@ import qs.Widgets import qs.Widgets.Notification import qs.Widgets.SidePanel - // Main bar component - creates panels on selected monitors with widgets and corners Scope { id: rootScope - property var shell property alias visible: barRootItem.visible Item { @@ -52,8 +50,19 @@ Scope { color: Theme.backgroundPrimary anchors.top: parent.top anchors.left: parent.left + + Rectangle { + anchors.bottom: parent.bottom + width: parent.width + height: 1 + color: "transparent" + border.color: Theme.outline || "#444" + border.width: 1 + } } + + Row { id: leftWidgetsRow @@ -261,7 +270,7 @@ Scope { aboveWindows: false implicitHeight: 24 - Corner{ + Corner { id: bottomRightCorner position: "topright"