131132133134135136137138139140141
} }; dlg.pack(); dlg.setOkButtonAsDefault(); dlg.setResizable(false); dlg.manageLocation(); dlg.setVisible(true); if (dlg.wasOkPressed()) { updateProperties(panel); } }
143144145146147148149150151152153
protected boolean useScroll() { return false; } }; dialog.pack(); dialog.manageLocation(FileFilterOptionsEditor.class); dialog.setOkButtonAsDefault(); dialog.setVisible(true); if (dialog.wasOkPressed()) { updateOptions(panel.getOptions(), true); }