Changeset 34248 in osm for applications


Ignore:
Timestamp:
2018-06-04T15:13:54+02:00 (7 years ago)
Author:
biswesh
Message:

Add new colors for selected bicycle ways

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/gui/PTAssistantPaintVisitor.java

    r34247 r34248  
    144144                        Way way = members.get(i).getWay();
    145145                        if (!link.isOnewayLoopForwardPart && !link.isOnewayLoopBackwardPart) {
    146                                 drawWay(way, new Color(0, 255, 255, 100));
     146                                if (way.isSelected()) {
     147                                        drawWay(way, new Color(0, 255, 0, 100));
     148                                } else {
     149                                        drawWay(way, new Color(0, 255, 255, 100));
     150                                }
    147151                        } else if (link.isOnewayLoopForwardPart) {
    148                                 drawWay(way, new Color(255, 0, 0, 100));
     152                                if (way.isSelected()) {
     153                                        drawWay(way, new Color(255, 20, 147, 100));
     154                                } else {
     155                                        drawWay(way, new Color(255, 0, 0, 100));
     156                                }
    149157                        } else {
    150                                 drawWay(way, new Color(0, 0, 255, 100));
     158                                if (way.isSelected()) {
     159                                        drawWay(way, new Color(128, 0, 128, 100));
     160                                } else {
     161                                        drawWay(way, new Color(0, 0, 255, 100));
     162                                }
    151163                        }
    152164                }
Note: See TracChangeset for help on using the changeset viewer.