The preferences main dialog. This is the panel the user sees when selecting Options -> Preferences from the main menu bar.
201202203204205206207208209210211
proxy.addActionListener(new ActionListener() { public void actionPerformed(final ActionEvent aEvent) { SwingUtilities.invokeLater(new Runnable() { public void run() { CheckForUpdates.this.dispose(); new PrefDialog(parent, PrefDialog.PrefsPanel.UPDATE); } }); } });
541542543544545546547548549550551
preferences.addActionListener(new ActionListener() { public void actionPerformed(final ActionEvent e) { SwingUtilities.invokeLater(new Runnable() { public void run() { new PrefDialog( JBroFuzzMenuBar.this.getFrame(), PrefDialog.PrefsPanel.PREFERENCES); } });