CenterForDigitalHumanities / SpectralRTI_Toolkit

Process Spectral RTI Images in ImageJ
GNU General Public License v3.0
1 stars 0 forks source link

Custom Dialogs don't have maximize #12

Closed thehabes closed 6 years ago

thehabes commented 6 years ago

There is no maximize button on the new custom dialogs.

thehabes commented 6 years ago

In short, JOptionPane which are the dialogs you see do not take a Java Window or subset of Window (which are the things that have maximize). Essentially, best practice with Java says these windows SHOULD NOT have a maximize feature and in fact the type of window for this specific process SHOULD NOT maximize. To offer a maximize button, we would have to hack the best practice implemented through the class, which we SHOULD NOT.

https://stackoverflow.com/questions/3897927/java-modal-window-with-maximize-button

thanneken commented 6 years ago

This seems fine to me.