Changeset 105 in josm for src


Ignore:
Timestamp:
2006-07-06T12:52:11+02:00 (18 years ago)
Author:
imi
Message:
  • fixed the tooltip and shortkey for Selection mapmod
  • fixed timestamp import in tagged images (should be ISO-conform now)
Location:
src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/actions/mapmode/SelectionAction.java

    r104 r105  
    9494         */
    9595        public SelectionAction(MapFrame mapFrame, String name, Mode mode, String desc) {
    96                 super(name, "selection/"+mode, desc, "S", KeyEvent.VK_S, mapFrame, ImageProvider.getCursor("normal", "selection"));
     96                super(name, "selection/"+mode, desc, mapFrame, ImageProvider.getCursor("normal", "selection"));
    9797                this.mode = mode;
    9898                this.selectionManager = new SelectionManager(this, false, mapFrame.mapView);
     
    202202        private Node addNearest(Collection<OsmPrimitive> path, Node start, Node end) {
    203203                Collection<Segment> c = reverseSegmentMap.get(start);
     204                //if (c == null)
     205                        //return null; // start may be a waypoint without segments
    204206                double min = Double.MAX_VALUE;
    205207                Node next = null;
  • src/org/openstreetmap/josm/tools/DateParser.java

    r104 r105  
    1515
    1616        private static final String[] formats = {
     17                "yyyy-MM-dd'T'HH:mm:ssZ",
     18                "yyyy-MM-dd'T'HH:mm:ss.SSSZ",
     19                "yyyy-MM-dd HH:mm:ss",
    1720                "MM/dd/yyyy HH:mm:ss",
    1821                "MM/dd/yyyy'T'HH:mm:ss.SSSZ",
Note: See TracChangeset for help on using the changeset viewer.