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/utilities/cards | |
| 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/utilities/cards')
| -rw-r--r-- | modules/utilities/cards/Toggles.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/utilities/cards/Toggles.qml b/modules/utilities/cards/Toggles.qml index d3ad51e..71f4d1d 100644 --- a/modules/utilities/cards/Toggles.qml +++ b/modules/utilities/cards/Toggles.qml @@ -12,6 +12,7 @@ StyledRect { id: root required property var visibilities + required property Item popouts Layout.fillWidth: true implicitHeight: layout.implicitHeight + Appearance.padding.large * 2 @@ -67,9 +68,7 @@ StyledRect { toggle: false onClicked: { root.visibilities.utilities = false; - WindowFactory.create(null, { - screen: QsWindow.window?.screen ?? null - }); + root.popouts.detach("appearance"); } } |