Skip to content

Commit

Permalink
Merge pull request #1599 from Robberduckzilla/bugfix/windows_tests
Browse files Browse the repository at this point in the history
Fix Windows Tests
  • Loading branch information
sammdot authored Jul 14, 2023
2 parents 9057504 + 098e147 commit 32489ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions news.d/bugfix/1599.windows.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed an issue which caused tests to fail on windows due to case sensitive filepaths.
1 change: 1 addition & 0 deletions plover/gui_qt/dictionaries_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ def _get_dictionary_save_name(self, title, default_name=None,
default_name = os.path.join(self._file_dialogs_directory, default_name)
else:
default_name = self._file_dialogs_directory
default_name = normalize_path(default_name)
new_filename = QFileDialog.getSaveFileName(
parent=self, caption=title, directory=default_name,
filter=_dictionary_filters(include_readonly=False),
Expand Down

0 comments on commit 32489ae

Please sign in to comment.