Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Sequence Blocks
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bioimage Analysis
Sequence Blocks
Commits
4f921d9c
Commit
4f921d9c
authored
4 years ago
by
Stephane Dallongeville
Browse files
Options
Downloads
Patches
Plain Diff
Minor fix for default values
parent
b73e29bb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/tprovoost/sequenceblocks/loop/SequenceFileImporterTileBatch.java
+4
-4
4 additions, 4 deletions
...st/sequenceblocks/loop/SequenceFileImporterTileBatch.java
with
4 additions
and
4 deletions
src/plugins/tprovoost/sequenceblocks/loop/SequenceFileImporterTileBatch.java
+
4
−
4
View file @
4f921d9c
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment