Skip to content
Snippets Groups Projects
Commit 4f921d9c authored by Stephane Dallongeville's avatar Stephane Dallongeville
Browse files

Minor fix for default values

parent b73e29bb
No related branches found
No related tags found
No related merge requests found
...@@ -93,9 +93,9 @@ public class SequenceFileImporterTileBatch extends SequenceFileImporterBatch ...@@ -93,9 +93,9 @@ public class SequenceFileImporterTileBatch extends SequenceFileImporterBatch
// lazy creation // lazy creation
if (tileW == null) if (tileW == null)
tileW = new VarInteger("Tile width (-1 = auto)", 0); tileW = new VarInteger("Tile width (-1 = auto)", -1);
if (tileH == null) if (tileH == null)
tileH = new VarInteger("Tile height (-1 = auto)", 0); tileH = new VarInteger("Tile height (-1 = auto)", -1);
inputMap.add("tileWidht", tileW); inputMap.add("tileWidht", tileW);
inputMap.add("tileHeight", tileH); inputMap.add("tileHeight", tileH);
...@@ -109,9 +109,9 @@ public class SequenceFileImporterTileBatch extends SequenceFileImporterBatch ...@@ -109,9 +109,9 @@ public class SequenceFileImporterTileBatch extends SequenceFileImporterBatch
// lazy creation // lazy creation
if (tileW == null) if (tileW == null)
tileW = new VarInteger("Tile width (-1 = auto)", 0); tileW = new VarInteger("Tile width (-1 = auto)", -1);
if (tileH == null) if (tileH == null)
tileH = new VarInteger("Tile height (-1 = auto)", 0); tileH = new VarInteger("Tile height (-1 = auto)", -1);
loopVariables.add(tileW); loopVariables.add(tileW);
loopVariables.add(tileH); loopVariables.add(tileH);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment