diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-14 16:59:19 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-14 16:59:19 +1000 |
| commit | 4b221e2fd5b7faf4747cff6c590b6ddc38870901 (patch) | |
| tree | 3041635aa0e94a7783410ccf76424143060fa605 /modules/utilities/Wrapper.qml | |
| parent | internal: close panels when fullscreen app (diff) | |
| download | caelestia-shell-4b221e2fd5b7faf4747cff6c590b6ddc38870901.tar.gz caelestia-shell-4b221e2fd5b7faf4747cff6c590b6ddc38870901.tar.bz2 caelestia-shell-4b221e2fd5b7faf4747cff6c590b6ddc38870901.zip | |
utilities: add recording control
Diffstat (limited to 'modules/utilities/Wrapper.qml')
| -rw-r--r-- | modules/utilities/Wrapper.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/utilities/Wrapper.qml b/modules/utilities/Wrapper.qml index 830ee5a..4de4014 100644 --- a/modules/utilities/Wrapper.qml +++ b/modules/utilities/Wrapper.qml @@ -2,12 +2,18 @@ pragma ComponentBehavior: Bound import qs.components import qs.config +import Quickshell import QtQuick Item { id: root required property var visibilities + readonly property PersistentProperties props: PersistentProperties { + property bool recordingListExpanded: false + + reloadableId: "utilities" + } visible: height > 0 implicitHeight: 0 @@ -76,6 +82,7 @@ Item { active: true sourceComponent: Content { + props: root.props visibilities: root.visibilities } } |