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