Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
06f3a5c4
Commit
06f3a5c4
authored
6 years ago
by
Ian Bush
Browse files
Options
Downloads
Patches
Plain Diff
Refs #22518 Use native file dialogues
parent
e137439a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
qt/applications/workbench/workbench/widgets/plotselector/view.py
+4
-5
4 additions, 5 deletions
...ications/workbench/workbench/widgets/plotselector/view.py
with
4 additions
and
5 deletions
qt/applications/workbench/workbench/widgets/plotselector/view.py
+
4
−
5
View file @
06f3a5c4
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment