From e52df3d05f9461c588aa3c9676420e59ec491d42 Mon Sep 17 00:00:00 2001 From: "N0\\A" Date: Wed, 22 Oct 2025 10:35:39 +0200 Subject: [PATCH] maybe I'll add an LLM later, it'd be better if it was offline, for now, pure scripting --- ui/gui.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/gui.py b/ui/gui.py index a49a567..a146525 100755 --- a/ui/gui.py +++ b/ui/gui.py @@ -46,13 +46,11 @@ class MainWindow(QtWidgets.QMainWindow): self.stay_on_top_timer.start(1000) def ensure_on_top(self): - """Periodically ensure the window stays on top""" if self.isVisible(): self.raise_() self.activateWindow() def showEvent(self, event): - """Ensure window is on top when shown""" super().showEvent(event) self.raise_() self.activateWindow()