fiji/Stitching

Missing a scrollbar at the "Confirm files" window !

Opened this issue · 1 comments

Hello,

I wanted to try this plugin to build a tile from separated images.
The issue: I have 205 images and when the confirmation window pops up with the list of the images, the list is too long so I cannot scroll down to validate my choice.
Hence I am stuck.

Please, is it possible to add a scrollbar for this window ?

Thanks !

I can imaging to alternative ways to solving this:

  • Don't offer the possibility to confirm single files when there are too many of them (what should be the threshold?). This would need to be implemented here:

if ( confirmFiles )
{
final GenericDialogPlus gd = new GenericDialogPlus( "Confirm files" );
for ( final String name : files )
gd.addCheckbox( name, true );
gd.showDialog();
if ( gd.wasCanceled() )
return null;
for ( int i = 0; i < files.size(); ++i )
useFile[ i ] = gd.getNextBoolean();
}

or