Skip to content

Commit

Permalink
Fix SessionDirectorySelectionDialog Disappearing (#163)
Browse files Browse the repository at this point in the history
* Change .open() call to .exec()

* Update CHANGELOG.md

* Amend CHANGELOG.md
  • Loading branch information
jcornall authored Nov 27, 2024
1 parent c193f38 commit c1dbd6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version x.x.x
- Change SessionDirectorySelectionDialog `.open()` call to `.exec()` (#163)

# Version 1.0.1
- Add NoBorderScrollArea, example and tests (#155)
- Edit next and prev in UIMultiStepWidget (#151)
Expand Down
2 changes: 1 addition & 1 deletion eqt/ui/MainWindowWithSessionManagement.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def createSessionsDirectorySelectionDialog(self, new_session=False):
session_folder_selection_dialog.selected_dir = os.path.split(
self.sessions_directory)[0]

session_folder_selection_dialog.open()
session_folder_selection_dialog.exec()

return session_folder_selection_dialog

Expand Down

0 comments on commit c1dbd6f

Please sign in to comment.