Skip to content
Snippets Groups Projects
Commit 2f401490 authored by Stéphane  DALLONGEVILLE's avatar Stéphane DALLONGEVILLE
Browse files

Moved sheet Id at the beginning of the name so it never gets truncated

parent 8645a7db
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,7 @@ public class PathIntensityProfiler extends EzPlug implements Block, EzStoppable ...@@ -225,7 +225,7 @@ public class PathIntensityProfiler extends EzPlug implements Block, EzStoppable
{ {
// create a sheet for each ROI // create a sheet for each ROI
final IcySpreadSheet sh = new IcySpreadSheet(result.createSheet( final IcySpreadSheet sh = new IcySpreadSheet(result.createSheet(
roi.getName().replace(':', '_') + String.format(" - S%04d", Integer.valueOf(roiIndex)))); String.format("S%04d - ", Integer.valueOf(roiIndex)) + roi.getName().replace(':', '_')));
// write columns headers // write columns headers
int indCol = 0; int indCol = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment