diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-20 16:02:08 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-20 16:02:08 +1000 |
| commit | 98a5a62a82dfd77736ef443282dcdb4585913d56 (patch) | |
| tree | 7eefc24159daf565f8015f651eb70644f5756ce9 | |
| parent | sidebar/notifs: better expand icon anim (diff) | |
| download | caelestia-shell-98a5a62a82dfd77736ef443282dcdb4585913d56.tar.gz caelestia-shell-98a5a62a82dfd77736ef443282dcdb4585913d56.tar.bz2 caelestia-shell-98a5a62a82dfd77736ef443282dcdb4585913d56.zip | |
utilities/record: hide sidebar as well
When hiding utilities
| -rw-r--r-- | modules/utilities/cards/RecordingList.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/utilities/cards/RecordingList.qml b/modules/utilities/cards/RecordingList.qml index 461d517..ab7537e 100644 --- a/modules/utilities/cards/RecordingList.qml +++ b/modules/utilities/cards/RecordingList.qml @@ -103,6 +103,7 @@ ColumnLayout { type: IconButton.Text onClicked: { root.visibilities.utilities = false; + root.visibilities.sidebar = false; Quickshell.execDetached(["app2unit", "--", ...Config.general.apps.playback, recording.modelData.path]); } } @@ -112,6 +113,7 @@ ColumnLayout { type: IconButton.Text onClicked: { root.visibilities.utilities = false; + root.visibilities.sidebar = false; Quickshell.execDetached(["app2unit", "--", ...Config.general.apps.explorer, recording.modelData.path]); } } |