From 12fe6c55591c2be9efb2838d36a32b4df8139337 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Tue, 25 Nov 2025 16:55:10 -0500 Subject: [PATCH] Debug: inhibitReloadPopup onReloadFailed unless we are debugging. --- shell.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/shell.qml b/shell.qml index 19f35a29d..b542c95a2 100644 --- a/shell.qml +++ b/shell.qml @@ -49,6 +49,11 @@ ShellRoot { function onReloadCompleted() { Quickshell.inhibitReloadPopup(); } + function onReloadFailed() { + if (!Settings?.isDebug) { + Quickshell.inhibitReloadPopup(); + } + } } Connections {