From 9f0ffa0dde82b656ff175b60bb744d9f2d012b94 Mon Sep 17 00:00:00 2001 From: "seer-by-sentry[bot]" <157164994+seer-by-sentry[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 16:43:47 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E6=8C=87=E7=A4=BA?= =?UTF-8?q?=E5=99=A8=E5=8A=A8=E7=94=BB=E5=81=9C=E6=AD=A2=EF=BC=8C=E9=81=BF?= =?UTF-8?q?=E5=85=8D=E4=BF=A1=E5=8F=B7=E5=B9=B2=E6=89=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/view/settings/settings.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/view/settings/settings.py b/app/view/settings/settings.py index 194d8f3e..1f8cf3ba 100644 --- a/app/view/settings/settings.py +++ b/app/view/settings/settings.py @@ -424,7 +424,11 @@ def _stop_navigation_animations(self): if panel is not None: indicator_ani = getattr(panel, "indicatorAni", None) if indicator_ani is not None: - indicator_ani.stop() + indicator_ani.blockSignals(True) + try: + indicator_ani.stop() + finally: + indicator_ani.blockSignals(False) except Exception: pass @@ -1338,4 +1342,4 @@ def show_settings_window_about(self): self.show() self.activateWindow() self.raise_() - self.switchTo(self.aboutInterface) + self.switchTo(self.aboutInterface)