Skip to content

Commit

Permalink
Unminimize window when item opened
Browse files Browse the repository at this point in the history
  • Loading branch information
probonopd committed Feb 11, 2025
1 parent d36cfab commit 27e722c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions siracusa.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,8 @@ def closeEvent(self, event):
def get_or_create_window(folder_path, spring_loaded: bool = False):
if folder_path in SpatialFilerWindow.open_windows:
window = SpatialFilerWindow.open_windows[folder_path]
if window.isMinimized():
window.showNormal()
window.raise_()
window.activateWindow()
if spring_loaded:
Expand Down

0 comments on commit 27e722c

Please sign in to comment.