fix: systray not fully revealing last elem

This commit is contained in:
Nydragon 2024-08-28 03:49:54 +02:00
parent 2577cb169d
commit 9898fee90f
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 4 additions and 5 deletions

View file

@ -21,6 +21,8 @@ Scope {
bottom: true bottom: true
} }
margins.left: 2 margins.left: 2
margins.top: 2
margins.bottom: 2
width: 30 width: 30
color: "transparent" color: "transparent"

View file

@ -3,8 +3,6 @@ import QtQuick
Rectangle { Rectangle {
width: parent.width width: parent.width
height: parent.height height: parent.height
anchors.bottomMargin: 5
anchors.topMargin: 5
border.color: "black" border.color: "black"
border.width: 2 border.width: 2
radius: 5 radius: 5

View file

@ -6,19 +6,18 @@ import Quickshell.Services.SystemTray
import "root:base" import "root:base"
BRectangle { BRectangle {
height: 100 height: 112
ScrollView { ScrollView {
anchors.fill: parent anchors.fill: parent
contentWidth: availableWidth contentWidth: availableWidth
padding: parent.border.width padding: parent.border.width * 2
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
ScrollBar.vertical.policy: ScrollBar.AlwaysOff ScrollBar.vertical.policy: ScrollBar.AlwaysOff
ColumnLayout { ColumnLayout {
anchors.fill: parent anchors.fill: parent
anchors.margins: 4
Repeater { Repeater {
model: SystemTray.items model: SystemTray.items