Changeset 27508 in osm for applications/editors/josm/plugins
- Timestamp:
- 2012-01-20T15:18:05+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/alignways/src/com/tilusnet/josm/plugins/alignways/AlignWaysPlugin.java
r27398 r27508 32 32 public AlignWaysPlugin(PluginInformation info) { 33 33 super(info); 34 35 // Construct the AlignWays mode toggle button 34 36 awMode = new AlignWaysMode(Main.map, "alignways", tr("Align Ways mode")); 35 37 btn = new IconToggleButton(awMode); 36 38 btn.setVisible(true); 39 40 // Add the action entries to the Tools Menu 37 41 Main.main.menu.toolsMenu.addSeparator(); 38 42 awAction = new AlignWaysAction(); 39 43 alignWaysMenuItem = MainMenu.add(Main.main.menu.toolsMenu, awAction); 44 40 45 awDialog = new AlignWaysDialog(awMode); 41 46 // Prevent user clicking on the Windows menu entry while panel is meaningless
Note:
See TracChangeset
for help on using the changeset viewer.