summaryrefslogtreecommitdiff
path: root/modules/utilities/cards
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-16 09:45:05 -0500
committerATMDA <atdma2600@gmail.com>2025-11-16 09:45:05 -0500
commit21e715468e9800a73c731921c27177731033d2ec (patch)
treef682450a63ba0ccf417efaa20e118ac4de06ff19 /modules/utilities/cards
parentcontrolcenter: slider input focus on pane change or click outside of text area (diff)
downloadcaelestia-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.qml5
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");
}
}