From eb1dc1356bded8104f4fe0b1b2e02472ebb09c57 Mon Sep 17 00:00:00 2001 From: DevilXD <4180725+DevilXD@users.noreply.github.com> Date: Sat, 21 Jun 2025 19:00:09 +0200 Subject: [PATCH] Use a less invasive method for grabbing user attention --- gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.py b/gui.py index 740228a..264954e 100644 --- a/gui.py +++ b/gui.py @@ -2245,7 +2245,7 @@ class GUIManager: def grab_attention(self, *, sound: bool = True): self.tray.restore() - self._root.focus_force() + self._root.focus_set() if sound: self._root.bell()