Debug: inhibitReloadPopup onReloadFailed unless we are debugging.

This commit is contained in:
ItsLemmy
2025-11-25 16:55:10 -05:00
parent a35123918c
commit 12fe6c5559
+5
View File
@@ -49,6 +49,11 @@ ShellRoot {
function onReloadCompleted() {
Quickshell.inhibitReloadPopup();
}
function onReloadFailed() {
if (!Settings?.isDebug) {
Quickshell.inhibitReloadPopup();
}
}
}
Connections {