1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-05-03 19:12:11 -04:00

process list: fix unloading

fixes #2284
This commit is contained in:
bbedward
2026-05-03 09:52:50 -04:00
parent c1cbd0994f
commit d2f6cb3ae4
2 changed files with 16 additions and 0 deletions

View File

@@ -631,6 +631,13 @@ Singleton {
processListModal?.hide();
}
function unloadProcessListModal() {
if (processListModalLoader) {
processListModal = null;
processListModalLoader.active = false;
}
}
function toggleProcessListModal() {
if (processListModal) {
processListModal.toggle();