Skip to content

Commit

Permalink
Segmentation Editor: Fixing bug #509. Old label stacks are recognized…
Browse files Browse the repository at this point in the history
… as valid again.

Removed check for "CoordType" in AmiraParameters.java since it does not seem to be used anywhere anymore.
  • Loading branch information
Daniel Hornung committed Apr 29, 2013
1 parent d9d3cd3 commit 867445b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src-plugins/VIB-lib/src/main/java/amira/AmiraParameters.java
Expand Up @@ -124,8 +124,7 @@ final public static boolean isAmiraLabelfield(ImagePlus imp) {
if (info1 == null || !(info1 instanceof String))
return false;
String info = (String)info1;
return (info.indexOf("CoordType") >= 0
&& info.indexOf("Materials") >= 0);
return (info.indexOf("Materials") >= 0);
}

public static boolean isAmiraLabelfield(Properties p) {
Expand Down

0 comments on commit 867445b

Please sign in to comment.