Skip to content

Commit

Permalink
Fix setting selected folder path
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Jun 21, 2023
1 parent 50d89ee commit 6585dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion damnit/gui/open_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def update_ok(self):
def browse_for_folder(self):
path = QFileDialog.getExistingDirectory()
if path:
self.ui.folder_edit.setText()
self.ui.folder_edit.setText(path)

def get_chosen_dir(self):
if self.ui.proposal_rb.isChecked():
Expand Down

0 comments on commit 6585dc3

Please sign in to comment.