Skip to content

Commit 14c2b27

Browse files
authored
Merge pull request #313 from k-dominik/change-default-export-order
Prefer compressed formats for export
2 parents 8ed88f6 + 5c4da23 commit 14c2b27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volumina/widgets/multiformatSlotExportFileOptionsWidget.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def initExportOp(self, opDataExport):
7272
self._format_option_editors = collections.OrderedDict()
7373

7474
# HDF5
75-
for fmt in ("hdf5", "compressed hdf5"):
75+
for fmt in ("compressed hdf5", "hdf5"):
7676
hdf5OptionsWidget = Hdf5ExportFileOptionsWidget(self)
7777
hdf5OptionsWidget.initSlots(
7878
opDataExport.OutputFilenameFormat, opDataExport.OutputInternalPath, opDataExport.ExportPath
@@ -81,7 +81,7 @@ def initExportOp(self, opDataExport):
8181
self._format_option_editors[fmt] = hdf5OptionsWidget
8282

8383
# N5
84-
for fmt in ("n5", "compressed n5"):
84+
for fmt in ("compressed n5", "n5"):
8585
n5OptionsWidget = N5ExportFileOptionsWidget(self)
8686
n5OptionsWidget.initSlots(
8787
opDataExport.OutputFilenameFormat, opDataExport.OutputInternalPath, opDataExport.ExportPath

0 commit comments

Comments
 (0)