chore: ColumnLayout for bar

This commit is contained in:
Nydragon 2024-08-27 03:18:52 +02:00
parent c5838d1d43
commit 28171e3a44
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g

View file

@ -24,23 +24,21 @@ Scope {
width: 30
color: "transparent"
// the ClockWidget type we just created
// TODO: on click open a calendar view
ClockWidget {
id: clock
Layout.alignment: Qt.AlignTop
}
ColumnLayout {
anchors.fill: parent
AudioOutput {
id: audio
popupAnchor: root
anchors.top: clock.bottom
Layout.alignment: Qt.AlignTop
}
// TODO: on click open a calendar view
ClockWidget {}
SysTray {
anchors.top: audio.bottom
Layout.alignment: Qt.AlignTop
AudioOutput {
popupAnchor: root
}
SysTray {}
Item {
Layout.fillHeight: true
}
}
}
}