Skip to content

Commit

Permalink
use index converted to string for channel name in LSMAcquisitionEvents
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon committed Oct 3, 2023
1 parent 1f3cb80 commit 9509819
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ public AcquisitionEvent next() {
AcquisitionEvent channelEvent = event.copy();
channelEvent.setConfigGroup(channelList[index].getGroup());
channelEvent.setConfigPreset(channelList[index].getName());
channelEvent.setChannelName(channelList[index].getName());
channelEvent.setChannelName(Integer.toString(index));
//channelEvent.setChannelName(channelList[index].getName());

double zPos;
if (channelEvent.getZPosition() == null) {
Expand Down

0 comments on commit 9509819

Please sign in to comment.