Changeset 27466 in osm for applications/editors
- Timestamp:
- 2012-01-15T12:15:52+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/alignways/src/com/tilusnet/josm/plugins/alignways/AlignWaysDialog.java
r27387 r27466 108 108 modesPanel.add(infoText); 109 109 110 111 112 110 // Start inactivated - JOSM cannot start directly in awMode 113 111 activate(false); 114 112 115 // It looks like I don't have other choice for placement than this; 116 // ToggleDialog already defines its layout as BoxLayout 117 add(dlgPane, BorderLayout.CENTER); 113 createLayout(dlgPane, false, null); 118 114 119 115 // Select length preserved mode by default 120 116 btnKeepLength.doClick(); 121 122 117 } 123 118 -
applications/editors/josm/plugins/print/build.xml
r27282 r27466 32 32 <property name="commit.message" value="Added a field to specify the map scale."/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 549"/>34 <property name="plugin.main.version" value="4733"/> 35 35 <!-- should not be necessary to change the following properties --> 36 36 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintAction.java
r27252 r27466 51 51 KeyEvent.VK_P, 52 52 Shortcut.GROUP_MENU), 53 true );53 true, "print/print", true); 54 54 } 55 55 -
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingDialog.java
r25843 r27466 70 70 Shortcut.registerShortcut("subwindow:relations", tr("Toggle: {0}", tr("Routing")), KeyEvent.VK_R, Shortcut.GROUP_LAYER), 150); 71 71 model = new DefaultListModel(); 72 add(getJScrollPane(), BorderLayout.CENTER);72 createLayout(getJScrollPane(), false, null); 73 73 } 74 74
Note:
See TracChangeset
for help on using the changeset viewer.