Skip to content

Commit

Permalink
Fix parameter loading in elastix plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ablot committed Jul 18, 2019
1 parent 9c5b479 commit d36f9b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lasagna/plugins/registration_plugins/elastix_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def loadParamFile_slot(self, selectedParamFiles=False):
3. Create an editable copy in a tempoary location
"""
if not selectedParamFiles:
selectedParamFiles = QtGui.QFileDialog.getOpenFileNames(self, "Select parameter file", "Text files (*.txt *.TXT *.ini *.INI)")
selectedParamFiles, filter_used = QtGui.QFileDialog.getOpenFileNames(self, "Select parameter file", "Text files (*.txt *.TXT *.ini *.INI)")

# Add to list
for path_to_param_file in selectedParamFiles:
Expand Down

0 comments on commit d36f9b4

Please sign in to comment.