Ignore:
Timestamp:
2006-12-31T16:36:27+01:00 (19 years ago)
Author:
imi
Message:
  • added select all / unselect all actions
  • added option to display the segment order number of a segment
  • fixed freeze when holding down middle button and moving mouse too fast
  • added warning when user deletes a layer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/gui/preferences/PluginPreference.java

    r168 r181  
    2727public class PluginPreference implements PreferenceSetting {
    2828
    29         private Map<PluginInformation, Boolean> pluginMap = new HashMap<PluginInformation, Boolean>();
     29        private Map<PluginInformation, Boolean> pluginMap;
    3030
    3131        public void addGui(final PreferenceDialog gui) {
     32                pluginMap = new HashMap<PluginInformation, Boolean>();
    3233                Box pluginPanel = Box.createVerticalBox();
    3334                Collection<PluginInformation> availablePlugins = new LinkedList<PluginInformation>();
Note: See TracChangeset for help on using the changeset viewer.