diff --git a/core/overlay_window.py b/core/overlay_window.py index 8f14ee4..31940f5 100644 --- a/core/overlay_window.py +++ b/core/overlay_window.py @@ -1750,10 +1750,9 @@ class OverlayWindow(QMainWindow): y = (screen.height() - 100) // 2 widget.move(x, y) - # Show and raise + # Show and raise (don't activate - widgets have WindowDoesNotAcceptFocus) widget.show() widget.raise_() - widget.activateWindow() # Store reference to prevent garbage collection if not hasattr(self, '_active_widgets'):