Changeset 26293 in osm for applications/editors/josm
- Timestamp:
- 2011-07-10T11:33:11+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reltoolbox/src/relcontext/ChosenRelation.java
r26290 r26293 101 101 // todo: dim chosen relation when changing layer 102 102 // todo: check this WTF! 103 System.out.println("editLayerChanged() oldLayer=" + oldLayer + ", newLayer=" + newLayer);104 103 clear(); 105 104 if( newLayer != null && oldLayer == null ) { -
applications/editors/josm/plugins/utilsplugin2/src/utilsplugin2/UtilsPlugin2.java
r26279 r26293 34 34 JMenuItem pasteRelations; 35 35 JMenuItem alignWayNodes; 36 JMenuItem splitOnIntersections; 36 37 JMenuItem selModifiedNodes; 37 38 JMenuItem selModifiedWays; … … 51 52 pasteRelations = MainMenu.add(toolsMenu, new PasteRelationsAction()); 52 53 alignWayNodes = MainMenu.add(toolsMenu, new AlignWayNodesAction()); 54 splitOnIntersections = MainMenu.add(toolsMenu, new SplitOnIntersectionsAction()); 53 55 54 56 JMenu selectionMenu = Main.main.menu.addMenu(marktr("Selection"), KeyEvent.VK_N, Main.main.menu.defaultMenuPos, "help"); … … 79 81 pasteRelations.setEnabled(enabled); 80 82 alignWayNodes.setEnabled(enabled); 83 splitOnIntersections.setEnabled(enabled); 81 84 82 85 selectWayNodes.setEnabled(enabled);
Note:
See TracChangeset
for help on using the changeset viewer.