Skip to content

Commit 3e1745a

Browse files
fix small bug in dataset name when resaving as OME-ZARR
1 parent 10fc0ba commit 3e1745a

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/net/preibisch/mvrecon/fiji/spimdata/explorer/popup

1 file changed

+1
-1
lines changed

src/main/java/net/preibisch/mvrecon/fiji/spimdata/explorer/popup/ResavePopup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ else if (index == 4 || index == 5 || index == 6 || index == 7 ) // 4 == in-place
312312
final SpimData2 newSpimData = Resave_N5Api.resaveN5( data, viewIds, n5params, false );
313313

314314
// make sure interestpoints are saved to the new location as well
315-
if ( index == 5 && !n5params.xmlURI.equals( panel.xml() ) )
315+
if ( (index == 5 || index ==7) && !n5params.xmlURI.equals( panel.xml() ) )
316316
{
317317
for ( final ViewInterestPointLists vipl : data.getViewInterestPoints().getViewInterestPoints().values() )
318318
vipl.getHashMap().values().forEach( ipl ->

0 commit comments

Comments
 (0)