Skip to content

Commit

Permalink
Imaris HDF: populate channel names
Browse files Browse the repository at this point in the history
Channel names were already parsed, but never propagated to the MetadataStore.
This appears to have been an oversight.
  • Loading branch information
melissalinkert committed Oct 30, 2023
1 parent e484e1f commit d67c37d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,9 @@ protected void initFile(String id) throws FormatException, IOException {
(int) (color[2] * 255), 255);
store.setChannelColor(realColor, s, i);
}
if (i < channelName.size()) {
store.setChannelName(channelName.get(i), s, i);
}
}
}
setSeries(0);
Expand Down

0 comments on commit d67c37d

Please sign in to comment.