diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-15 10:25:45 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-15 10:25:45 -0500 |
| commit | f79fd9328ce01bde921775a0301a3a6969deaa34 (patch) | |
| tree | 4f62598e477a79f9d3b4676d03b236644321c2af /modules/controlcenter/appearance | |
| parent | controlcenter: fix wallpaper gradient overlay (diff) | |
| download | caelestia-shell-f79fd9328ce01bde921775a0301a3a6969deaa34.tar.gz caelestia-shell-f79fd9328ce01bde921775a0301a3a6969deaa34.tar.bz2 caelestia-shell-f79fd9328ce01bde921775a0301a3a6969deaa34.zip | |
controlcenter: fix edge to edge in panels
Diffstat (limited to 'modules/controlcenter/appearance')
| -rw-r--r-- | modules/controlcenter/appearance/AppearancePane.qml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/controlcenter/appearance/AppearancePane.qml b/modules/controlcenter/appearance/AppearancePane.qml index 1e81205..35b479a 100644 --- a/modules/controlcenter/appearance/AppearancePane.qml +++ b/modules/controlcenter/appearance/AppearancePane.qml @@ -114,8 +114,7 @@ RowLayout { id: sidebarFlickable anchors.fill: parent flickableDirection: Flickable.VerticalFlick - contentHeight: sidebarLayout.implicitHeight + Appearance.padding.large * 2 - clip: true + contentHeight: sidebarLayout.height StyledScrollBar.vertical: StyledScrollBar { flickable: sidebarFlickable @@ -852,11 +851,12 @@ RowLayout { StyledFlickable { anchors.fill: parent - anchors.margins: Appearance.padding.large * 2 + anchors.margins: Appearance.padding.normal + anchors.leftMargin: 0 + anchors.rightMargin: Appearance.padding.normal / 2 flickableDirection: Flickable.VerticalFlick - contentHeight: contentLayout.implicitHeight - clip: true + contentHeight: contentLayout.height StyledScrollBar.vertical: StyledScrollBar { flickable: parent @@ -868,6 +868,8 @@ RowLayout { anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top + anchors.leftMargin: Appearance.padding.large * 2 + anchors.rightMargin: Appearance.padding.large * 2 spacing: Appearance.spacing.normal |