Skip to content

Commit

Permalink
merge dev_5_0 -Dorg -Ssuccess-only: PR 1275 (Performance and position…
Browse files Browse the repository at this point in the history
… count fixes for ND2)
  • Loading branch information
snoopycrimecop committed Aug 21, 2014
2 parents 4a28d34 + 06a268b commit 224c212
Show file tree
Hide file tree
Showing 2 changed files with 163 additions and 69 deletions.
4 changes: 4 additions & 0 deletions components/formats-gpl/src/loci/formats/in/ND2Handler.java
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,10 @@ else if (key.equals("Exposure")) {
if (s.length > 1) {
if (s[1].equals("ms")) time /= 1000;
}
else {
// assume time is in milliseconds
time /= 1000;
}
exposureTime.add(new Double(time));
}
}
Expand Down

0 comments on commit 224c212

Please sign in to comment.