Skip to content
Snippets Groups Projects
Commit 06f3a5c4 authored by Ian Bush's avatar Ian Bush
Browse files

Refs #22518 Use native file dialogues

parent e137439a
No related branches found
No related tags found
No related merge requests found
...@@ -591,8 +591,7 @@ class PlotSelectorView(QWidget): ...@@ -591,8 +591,7 @@ class PlotSelectorView(QWidget):
""" """
# Returns a tuple containing the filename and extension # Returns a tuple containing the filename and extension
absolute_path = QFileDialog.getSaveFileName(caption='Select filename for exported plot', absolute_path = QFileDialog.getSaveFileName(caption='Select filename for exported plot',
filter='*{}'.format(extension), filter='*{}'.format(extension))
options=QFileDialog.DontUseNativeDialog)
return absolute_path[0] return absolute_path[0]
def get_directory_name_for_saving(self): def get_directory_name_for_saving(self):
...@@ -601,9 +600,9 @@ class PlotSelectorView(QWidget): ...@@ -601,9 +600,9 @@ class PlotSelectorView(QWidget):
:return : The path to the directory :return : The path to the directory
""" """
# Note that the native dialog does not always show the files # Note that the native dialog does not always show the files
# in the directory, hence using the Qt dialog # in the directory on Linux, but using the non-native dialog
directory = QFileDialog.getExistingDirectory(caption='Select folder for exported plots', # is not very pleasant on Windows or Mac
options=QFileDialog.DontUseNativeDialog) directory = QFileDialog.getExistingDirectory(caption='Select folder for exported plots')
return directory return directory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment