Commit 7095b7f8bebc5f6a1c808cad5cd42d4fe275d40c
1 parent
2d10f6e2
Exists in
master
FIX: Fixed problem in win64
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
invesalius/gui/dialogs.py
... | ... | @@ -213,15 +213,15 @@ class ProgressDialog(object): |
213 | 213 | WILDCARD_OPEN = "InVesalius 3 project (*.inv3)|*.inv3|" \ |
214 | 214 | "All files (*.*)|*.*" |
215 | 215 | |
216 | -WILDCARD_ANALYZE = "Analyze 7.5 (*.hdr)|*.[hH][dD][rR]|" \ | |
216 | +WILDCARD_ANALYZE = "Analyze 7.5 (*.hdr)|*.hdr|" \ | |
217 | 217 | "All files (*.*)|*.*" |
218 | 218 | |
219 | 219 | WILDCARD_NIFTI = "NIfTI 1 (*.nii)|*.nii|" \ |
220 | 220 | "Compressed NIfTI (*.nii.gz)|*.nii.gz|" \ |
221 | - "HDR NIfTI (*.hdr)|*.[hH][dD][rR]|" \ | |
221 | + "HDR NIfTI (*.hdr)|*.hdr|" \ | |
222 | 222 | "All files (*.*)|*.*" |
223 | 223 | #".[jJ][pP][gG]" |
224 | -WILDCARD_PARREC = "PAR/REC (*.par)|*.[pP][aA][rR]|" \ | |
224 | +WILDCARD_PARREC = "PAR/REC (*.par)|*.par|" \ | |
225 | 225 | "All files (*.*)|*.*" |
226 | 226 | |
227 | 227 | WILDCARD_MESH_FILES = "STL File format (*.stl)|*.stl|" \ | ... | ... |