From 28171e3a447be91541b9d078e58e845d0b2eb80d Mon Sep 17 00:00:00 2001 From: Nydragon Date: Tue, 27 Aug 2024 03:18:52 +0200 Subject: [PATCH] chore: ColumnLayout for bar --- src/Bar.qml | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/src/Bar.qml b/src/Bar.qml index 1dc5cf9..4eb7787 100644 --- a/src/Bar.qml +++ b/src/Bar.qml @@ -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 + } } } }