Ignore:
Timestamp:
2006-09-09T00:18:24+02:00 (20 years ago)
Author:
imi
Message:
  • added feature "Save" (old save is now "Save as")
  • added feature to rename a layer
  • fixed bug that geo-images pop up more than once
  • fixed bug where you could try to change properties for 0 objects
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/Main.java

    r133 r138  
    3838import org.openstreetmap.josm.actions.ReverseSegmentAction;
    3939import org.openstreetmap.josm.actions.SaveAction;
     40import org.openstreetmap.josm.actions.SaveAsAction;
    4041import org.openstreetmap.josm.actions.UndoAction;
    4142import org.openstreetmap.josm.actions.UploadAction;
     
    164165                final Action uploadAction = new UploadAction();
    165166                final Action saveAction = new SaveAction();
     167                final Action saveAsAction = new SaveAsAction();
    166168                final Action gpxExportAction = new GpxExportAction(null);
    167169                final Action exitAction = new ExitAction();
     
    173175                fileMenu.add(openAction);
    174176                fileMenu.add(saveAction);
     177                fileMenu.add(saveAsAction);
    175178                fileMenu.add(gpxExportAction);
    176179                fileMenu.addSeparator();
     
    247250        public final OsmDataLayer editLayer() {
    248251                if (map == null || map.mapView.editLayer == null)
    249                         addLayer(new OsmDataLayer(ds, tr("unnamed"), false));
     252                        addLayer(new OsmDataLayer(ds, tr("unnamed"), null));
    250253                return map.mapView.editLayer;
    251254        }
Note: See TracChangeset for help on using the changeset viewer.