Makes help text dialogs modeless; closes #247

This commit is contained in:
hneemann 2019-02-18 08:36:55 +01:00
parent cc56390592
commit 39874cee00

View File

@ -48,7 +48,7 @@ public class ShowStringDialog extends JDialog {
* @param html is the string a html string?
*/
public ShowStringDialog(Window parent, String title, String str, boolean html) {
super(parent, title, ModalityType.APPLICATION_MODAL);
super(parent, title, ModalityType.MODELESS);
init(parent, str, html);
}