Changeset 25680 in osm for applications/editors/josm
- Timestamp:
- 2011-03-23T17:57:13+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/relcontext/src/relcontext
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/relcontext/src/relcontext/ChosenRelation.java
r25679 r25680 103 103 Composite oldComposite = g.getComposite(); 104 104 g.setColor(Color.yellow); 105 g.setStroke(new BasicStroke( 6, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND));105 g.setStroke(new BasicStroke(9, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND)); 106 106 g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.3f)); 107 107 for( OsmPrimitive element : chosenRelation.getMemberPrimitives() ) { -
applications/editors/josm/plugins/relcontext/src/relcontext/RelContextDialog.java
r25679 r25680 300 300 301 301 private static final Map<String, String[]> possibleRoles = new HashMap<String, String[]>(); 302 {302 static { 303 303 possibleRoles.put("boundary", new String[] {"admin_centre", "label", "subarea"}); 304 304 possibleRoles.put("route", new String[] {"forward", "backward", "stop", "platform"}); … … 411 411 add(new DeleteChosenRelationAction(chosenRelation)); 412 412 add(new DownloadParentsAction(chosenRelation)); 413 addSeparator(); 414 add(new SelectInRelationPanelAction(chosenRelation)); 415 add(new RelationHelpAction(chosenRelation)); 413 416 } 414 417 }
Note:
See TracChangeset
for help on using the changeset viewer.