diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-16 09:45:05 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-16 09:45:05 -0500 |
| commit | 21e715468e9800a73c731921c27177731033d2ec (patch) | |
| tree | f682450a63ba0ccf417efaa20e118ac4de06ff19 /modules/bar | |
| parent | controlcenter: slider input focus on pane change or click outside of text area (diff) | |
| download | caelestia-shell-21e715468e9800a73c731921c27177731033d2ec.tar.gz caelestia-shell-21e715468e9800a73c731921c27177731033d2ec.tar.bz2 caelestia-shell-21e715468e9800a73c731921c27177731033d2ec.zip | |
controlcenter: changed to popout vs floating to match the other settings buttons (fixed issues with resizing)
Diffstat (limited to 'modules/bar')
| -rw-r--r-- | modules/bar/components/Settings.qml | 4 | ||||
| -rw-r--r-- | modules/bar/components/SettingsIcon.qml | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/modules/bar/components/Settings.qml b/modules/bar/components/Settings.qml index e92fc46..0eceea7 100644 --- a/modules/bar/components/Settings.qml +++ b/modules/bar/components/Settings.qml @@ -21,7 +21,9 @@ Item { radius: Appearance.rounding.full function onClicked(): void { - WindowFactory.create(); + WindowFactory.create(null, { + active: "appearance" + }); } } diff --git a/modules/bar/components/SettingsIcon.qml b/modules/bar/components/SettingsIcon.qml index e92fc46..0eceea7 100644 --- a/modules/bar/components/SettingsIcon.qml +++ b/modules/bar/components/SettingsIcon.qml @@ -21,7 +21,9 @@ Item { radius: Appearance.rounding.full function onClicked(): void { - WindowFactory.create(); + WindowFactory.create(null, { + active: "appearance" + }); } } |