diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-15 21:49:09 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-15 21:49:09 +1000 |
| commit | 2be46ff65ab50026e831c42b25c1a4f86eb413c4 (patch) | |
| tree | 03853df4c5bbb5d948dd01f4f8a627504b1a918b /modules/bar/Bar.qml | |
| parent | lock/notifs: retain notifs (diff) | |
| download | caelestia-shell-2be46ff65ab50026e831c42b25c1a4f86eb413c4.tar.gz caelestia-shell-2be46ff65ab50026e831c42b25c1a4f86eb413c4.tar.bz2 caelestia-shell-2be46ff65ab50026e831c42b25c1a4f86eb413c4.zip | |
internal: static bar width
Diffstat (limited to 'modules/bar/Bar.qml')
| -rw-r--r-- | modules/bar/Bar.qml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/bar/Bar.qml b/modules/bar/Bar.qml index 71a5b79..ec2cae9 100644 --- a/modules/bar/Bar.qml +++ b/modules/bar/Bar.qml @@ -15,7 +15,6 @@ ColumnLayout { required property ShellScreen screen required property PersistentProperties visibilities required property BarPopouts.Wrapper popouts - readonly property int padding: Math.max(Appearance.padding.smaller, Config.border.thickness) readonly property int vPadding: Appearance.padding.large function checkPopout(y: real): void { @@ -171,8 +170,6 @@ ColumnLayout { } Layout.alignment: Qt.AlignHCenter - Layout.leftMargin: root.padding - Layout.rightMargin: root.padding // Cursed ahh thing to add padding to first and last enabled components Layout.topMargin: findFirstEnabled() === this ? root.vPadding : 0 @@ -180,5 +177,6 @@ ColumnLayout { visible: enabled active: enabled + asynchronous: true } } |