diff --git a/src/plugins/tprovoost/sequenceblocks/loop/SequenceFileImporterTileBatch.java b/src/plugins/tprovoost/sequenceblocks/loop/SequenceFileImporterTileBatch.java index fa0d9a6c00dace230ca1deef310a6f4becdd000b..57d3af77dfe12a277bbc5710fe1efe70b8fcbdf8 100644 --- a/src/plugins/tprovoost/sequenceblocks/loop/SequenceFileImporterTileBatch.java +++ b/src/plugins/tprovoost/sequenceblocks/loop/SequenceFileImporterTileBatch.java @@ -93,9 +93,9 @@ public class SequenceFileImporterTileBatch extends SequenceFileImporterBatch // lazy creation if (tileW == null) - tileW = new VarInteger("Tile width (-1 = auto)", 0); + tileW = new VarInteger("Tile width (-1 = auto)", -1); 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("tileHeight", tileH); @@ -109,9 +109,9 @@ public class SequenceFileImporterTileBatch extends SequenceFileImporterBatch // lazy creation if (tileW == null) - tileW = new VarInteger("Tile width (-1 = auto)", 0); + tileW = new VarInteger("Tile width (-1 = auto)", -1); if (tileH == null) - tileH = new VarInteger("Tile height (-1 = auto)", 0); + tileH = new VarInteger("Tile height (-1 = auto)", -1); loopVariables.add(tileW); loopVariables.add(tileH);