Ignore:
Timestamp:
2009-06-07T02:56:33+02:00 (15 years ago)
Author:
stoecker
Message:

fixed plugin handling a bit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/PreferencesAction.java

    r1212 r1647  
    2323 * @author imi
    2424 */
    25 public class PreferencesAction extends JosmAction {
     25public class PreferencesAction extends JosmAction implements Runnable {
    2626
    2727    /**
     
    3737     */
    3838    public void actionPerformed(ActionEvent e) {
     39        new Thread(this).start();
     40    }
     41
     42    public void run() {
    3943        PreferenceDialog prefDlg = new PreferenceDialog();
    4044        prefDlg.setMinimumSize(new Dimension(400,300));
Note: See TracChangeset for help on using the changeset viewer.