Changeset 205 in josm for src/org/openstreetmap/josm/tools


Ignore:
Timestamp:
2007-04-03T13:49:40+02:00 (18 years ago)
Author:
imi
Message:
  • added "addToggleDialog" to MapFrame to give plugins the chance of providing new toggle dialogs
  • fixed display of <different> in the property dialog when selecting different non-empty values
  • fixed the preferences directory under Windows (JOSM now uses environment variable APPDATA)
  • added LiveGPS plugin to exception detection heuristic
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java

    r202 r205  
    6565                                                        JOptionPane.YES_NO_OPTION);
    6666                                        if (answer == JOptionPane.OK_OPTION) {
    67                                                 plugins.remove(pluginName);
     67                                                while (plugins.remove(pluginName)) {}
    6868                                                String p = "";
    6969                                                for (String s : plugins)
     
    157157                        if (c.contains("landsat.") || c.contains(".LandsatLayer"))
    158158                                return "landsat";
     159                        if (c.contains("livegps."))
     160                                return "livegps";
    159161                        if (c.contains("mappaint."))
    160162                                return "mappaint";
Note: See TracChangeset for help on using the changeset viewer.