Changeset 7553 in josm for trunk/src


Ignore:
Timestamp:
2014-09-17T22:27:53+02:00 (10 years ago)
Author:
bastiK
Message:

see #10512 - better taginfo support

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java

    r7549 r7553  
    12461246
    12471247        // only highlight the segment if the way itself is not highlighted
    1248         if (!way.isHighlighted()) {
     1248        if (!way.isHighlighted() && highlightWaySegments != null) {
    12491249            GeneralPath highlightSegs = null;
    12501250            for (WaySegment ws : highlightWaySegments) {
     
    13601360
    13611361    @Override
    1362     protected void getSettings(boolean virtual) {
     1362    public void getSettings(boolean virtual) {
    13631363        super.getSettings(virtual);
    13641364        paintSettings = MapPaintSettings.INSTANCE;
  • trunk/src/org/openstreetmap/josm/gui/dialogs/MapPaintDialog.java

    r7450 r7553  
    674674                ImageProvider.get("dialogs/mappaint/pencil.png"),
    675675                ImageProvider.OverlayPosition.SOUTHEAST));
     676            setMenu.setToolTipText(tr("Customize the style"));
    676677            add(setMenu);
    677678
Note: See TracChangeset for help on using the changeset viewer.