Skip to content

Commit

Permalink
Merge pull request #313 from k-dominik/change-default-export-order
Browse files Browse the repository at this point in the history
Prefer compressed formats for export
  • Loading branch information
k-dominik authored May 13, 2024
2 parents 8ed88f6 + 5c4da23 commit 14c2b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions volumina/widgets/multiformatSlotExportFileOptionsWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def initExportOp(self, opDataExport):
self._format_option_editors = collections.OrderedDict()

# HDF5
for fmt in ("hdf5", "compressed hdf5"):
for fmt in ("compressed hdf5", "hdf5"):
hdf5OptionsWidget = Hdf5ExportFileOptionsWidget(self)
hdf5OptionsWidget.initSlots(
opDataExport.OutputFilenameFormat, opDataExport.OutputInternalPath, opDataExport.ExportPath
Expand All @@ -81,7 +81,7 @@ def initExportOp(self, opDataExport):
self._format_option_editors[fmt] = hdf5OptionsWidget

# N5
for fmt in ("n5", "compressed n5"):
for fmt in ("compressed n5", "n5"):
n5OptionsWidget = N5ExportFileOptionsWidget(self)
n5OptionsWidget.initSlots(
opDataExport.OutputFilenameFormat, opDataExport.OutputInternalPath, opDataExport.ExportPath
Expand Down

0 comments on commit 14c2b27

Please sign in to comment.