Skip to content

Commit

Permalink
fix: bwApply macro recording and playback errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bogovicj committed Oct 12, 2023
1 parent ed91f99 commit af43fe6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/bdv/ij/ApplyBigwarpPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -1118,10 +1118,10 @@ public void run( final String arg )
gd.addNumericField( "threads", 4, 0 );

gd.addMessage( "Writing options (leave empty to opena new image window)" );
gd.addDirectoryOrFileField( "File or n5 root", "" );
gd.addStringField( "n5 dataset", "" );
gd.addStringField( "n5 block size", "32" );
gd.addChoice( "n5 compression", new String[] {
gd.addDirectoryOrFileField( "File_or_n5_root", "" );
gd.addStringField( "n5_dataset", "" );
gd.addStringField( "n5_block_size", "32" );
gd.addChoice( "n5_compression", new String[] {
N5Exporter.GZIP_COMPRESSION,
N5Exporter.RAW_COMPRESSION,
N5Exporter.LZ4_COMPRESSION,
Expand Down

0 comments on commit af43fe6

Please sign in to comment.