Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions app/view/settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Comment on lines +427 to +431
except Exception:
pass

Expand Down Expand Up @@ -1338,4 +1342,4 @@ def show_settings_window_about(self):
self.show()
self.activateWindow()
self.raise_()
self.switchTo(self.aboutInterface)
self.switchTo(self.aboutInterface)
Expand Down
Loading