diff options
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 } } |