fixed weird layout thing

This commit is contained in:
2026-08-06 17:43:44 +01:00
parent bc2f308673
commit 185e7618a4

27
Bar.qml
View File

@@ -51,7 +51,6 @@ Scope {
topMargin: 3
}
RowLayout {
anchors {
left: parent.left
leftMargin: 3
@@ -63,35 +62,41 @@ Scope {
Row {
id: left
Layout.alignment: Qt.AlignTop
anchors {
left: parent.left
top: parent.top
}
WorkspaceSelector {
monitor: win.monitor
}
}
Item {
Layout.fillWidth: true
}
Row {
id: center
Layout.alignment: Qt.AlignTop
anchors {
horizontalCenter: parent.horizontalCenter
top: parent.top
}
Time {
monitor: win.monitor
}
}
Item {
Layout.fillWidth: true
}
Row {
id: right
Layout.alignment: Qt.AlignTop
anchors {
right: parent.right
top: parent.top
}
Bluetooth {
monitor: win.monitor
}
}
}