1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-25 14:02:53 -05:00
Files
DankMaterialShell/quickshell/Modules/ControlCenter/utils/state.js

18 lines
362 B
JavaScript

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;
}
}