imagej / imagej-legacy

ImageJ+ImageJ2 compatibility layer
https://imagej.net/libs/imagej-legacy
BSD 2-Clause "Simplified" License
17 stars 25 forks source link

Add confirmation buttons to ImageJ2Options #161

Closed rimadoma closed 7 years ago

rimadoma commented 7 years ago

A minor grievance, but the ImageJ2Options dialog doesn't have the usual OK, Cancel or other such "confirmation buttons". This sometimes catches me by surprise and interrupts my workflow. Is this because unlike other OptionPlugins this one is displayed in legacy mode?

ctrueden commented 7 years ago

That is by design, and it is because it implements Interactive. The original reason was because we were automatically popping up that options dialog when you first downloaded and ran ImageJ2, and we did not want to block the user. I cannot recall why that was so important though, or if we still do that. If you want to fix it, I think you can just remove the implements Interactive from the ImageJ2Options class.

ctrueden commented 7 years ago

Fixed by #162.