Skip to content
Snippets Groups Projects
Commit b7a57646 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

bugfix: checkboxes in ExportSpim*PlugIn weren't properly evaluated.

parent ed47fcb6
No related branches found
No related tags found
No related merge requests found
......@@ -727,6 +727,7 @@ public class ExportSpimFusionPlugIn implements PlugIn
maxValueStatic = gd2.getNextNumber();
// parse mipmap resolutions and cell sizes
lastSetMipmapManual = gd2.getNextBoolean();
lastSubsampling = gd2.getNextString();
lastChunkSizes = gd2.getNextString();
final int[][] resolutions = PluginHelper.parseResolutionsString( lastSubsampling );
......
......@@ -538,9 +538,9 @@ public class ExportSpimSequencePlugIn implements PlugIn
IOFunctions.println( "tp " + tp );
// parse mipmap resolutions and cell sizes
lastSetMipmapManual = gd2.getNextBoolean();
lastSubsampling = gd2.getNextString();
lastChunkSizes = gd2.getNextString();
lastDeflate = gd.getNextBoolean();
final int[][] resolutions = PluginHelper.parseResolutionsString( lastSubsampling );
final int[][] subdivisions = PluginHelper.parseResolutionsString( lastChunkSizes );
if ( resolutions.length == 0 )
......@@ -559,6 +559,8 @@ public class ExportSpimSequencePlugIn implements PlugIn
return null;
}
lastDeflate = gd2.getNextBoolean();
String seqFilename = gd2.getNextString();
if ( !seqFilename.endsWith( ".xml" ) )
seqFilename += ".xml";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment