Ignore:
Timestamp:
2006-04-28T01:32:03+02:00 (20 years ago)
Author:
imi
Message:
  • fixed JOSM crash when importing GeoImages on layers without timestamp
  • fixed merging: incomplete segments do not overwrite complete on ways
  • fixed focus when entering the popups from PropertyDialog
  • fixed broken "draw lines between gps points"
  • added doubleclick on bookmarklist
  • added background color configuration
  • added GpxImport to import 1.0 and 1.1 GPX files

This is release JOSM 1.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java

    r98 r100  
    7676        }
    7777
    78         private static Icon icon;
    79 
    8078        /**
    8179         * The data behind this layer.
     
    107105        public final LinkedList<ModifiedChangedListener> listenerModified = new LinkedList<ModifiedChangedListener>();
    108106        public final LinkedList<CommandQueueListener> listenerCommands = new LinkedList<CommandQueueListener>();
    109 
    110107
    111108        /**
     
    123120         */
    124121        @Override public Icon getIcon() {
    125                 if (icon == null)
    126                         icon = ImageProvider.get("layer", "osmdata");
    127                 return icon;
     122                return ImageProvider.get("layer", "osmdata");
    128123        }
    129124
     
    202197                redoCommands.push(c);
    203198                //TODO: Replace with listener scheme
    204                         setModified(uploadedModified);
     199                setModified(uploadedModified);
    205200                Main.ds.clearSelection();
    206201                fireCommandsChanged();
     
    255250
    256251        public void fireCommandsChanged() {
    257             for (final CommandQueueListener l : listenerCommands)
     252                for (final CommandQueueListener l : listenerCommands)
    258253                        l.commandChanged(commands.size(), redoCommands.size());
    259     }
     254        }
    260255
    261256        /**
Note: See TracChangeset for help on using the changeset viewer.