Skip to content

Commit

Permalink
Merge branch 'main' into 2591-dataoperation-panel-fails-on-file-load
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojciech Potrzebowski authored Sep 4, 2023
2 parents c52dee1 + 55b1e9f commit ea66139
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Staple Release Build (OSX)
if: ${{ startsWith(matrix.os, 'macos') }}
uses: devbotsxyz/xcode-staple@v1
uses: BoundfoxStudios/action-xcode-staple@v1
with:
product-path: "installers/dist/SasView-nightly-MacOSX.dmg"

Expand Down
2 changes: 1 addition & 1 deletion src/sas/qtgui/MainWindow/DataExplorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def loadFolder(self, event=None):
caption = 'Choose a directory'
options = QtWidgets.QFileDialog.ShowDirsOnly | QtWidgets.QFileDialog.DontUseNativeDialog
directory = self.default_load_location
folder = QtWidgets.QFileDialog.getExistingDirectory(parent, caption, directory, "", options)
folder = QtWidgets.QFileDialog.getExistingDirectory(parent, caption, directory, options)

if folder is None:
return
Expand Down
2 changes: 1 addition & 1 deletion src/sas/qtgui/Plotting/SlicerParameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def onChooseFilesLocation(self):
caption = 'Save files to:'
options = QtWidgets.QFileDialog.ShowDirsOnly | QtWidgets.QFileDialog.DontUseNativeDialog
directory = self.save_location
folder = QtWidgets.QFileDialog.getExistingDirectory(parent, caption, directory, "", options)
folder = QtWidgets.QFileDialog.getExistingDirectory(parent, caption, directory, options)

if folder is None:
return
Expand Down

0 comments on commit ea66139

Please sign in to comment.