summaryrefslogtreecommitdiff
path: root/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modules/ControlCenter/utils/state.js
diff options
context:
space:
mode:
Diffstat (limited to 'raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modules/ControlCenter/utils/state.js')
-rw-r--r--raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modules/ControlCenter/utils/state.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modules/ControlCenter/utils/state.js b/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modules/ControlCenter/utils/state.js
deleted file mode 100644
index a2d59a6..0000000
--- a/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modules/ControlCenter/utils/state.js
+++ /dev/null
@@ -1,17 +0,0 @@
-function openWithSection(root, section) {
- if (root.shouldBeVisible) {
- root.close();
- } else {
- root.expandedSection = section;
- root.open();
- }
-}
-
-function toggleSection(root, section) {
- if (root.expandedSection === section) {
- root.expandedSection = "";
- root.expandedWidgetIndex = -1;
- } else {
- root.expandedSection = section;
- }
-}