diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-03 18:27:43 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2026-01-03 18:27:43 +1100 |
| commit | 30adbfb42f8819a77b681bb8ecd8c5b05f975360 (patch) | |
| tree | dd055995f3d8c795740c3a5ba85ff6b71078918d | |
| parent | dashboard: add weather tab (diff) | |
| download | caelestia-shell-30adbfb42f8819a77b681bb8ecd8c5b05f975360.tar.gz caelestia-shell-30adbfb42f8819a77b681bb8ecd8c5b05f975360.tar.bz2 caelestia-shell-30adbfb42f8819a77b681bb8ecd8c5b05f975360.zip | |
dashboard: fix index not initialised
| -rw-r--r-- | modules/dashboard/Content.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/dashboard/Content.qml b/modules/dashboard/Content.qml index 7809a27..650e974 100644 --- a/modules/dashboard/Content.qml +++ b/modules/dashboard/Content.qml @@ -106,8 +106,9 @@ Item { index: 2 sourceComponent: Performance {} } - + Pane { + index: 3 sourceComponent: Weather {} } } @@ -134,7 +135,7 @@ Item { component Pane: Loader { required property int index - + Layout.alignment: Qt.AlignTop Component.onCompleted: active = Qt.binding(() => { |