fix: systray not fully revealing last elem
This commit is contained in:
parent
2577cb169d
commit
9898fee90f
3 changed files with 4 additions and 5 deletions
|
@ -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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue