Changeset 36369 in osm for applications/editors/josm/plugins
- Timestamp:
- 2025-01-16T08:48:02+01:00 (3 weeks ago)
- Location:
- applications/editors/josm/plugins/turnlanes/src/org/openstreetmap/josm/plugins/turnlanes/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnlanes/src/org/openstreetmap/josm/plugins/turnlanes/gui/JunctionPane.java
r34925 r36369 285 285 rotation = 0; 286 286 287 scale = Math.min(getHeight() / 2 / bounds.getHeight(), getWidth() / 2 / bounds.getWidth()); 287 scale = Math.min(getHeight() / 2.0 / bounds.getHeight(), getWidth() / 2.0 / bounds.getWidth()); 288 288 289 289 translationX = -bounds.getCenterX(); -
applications/editors/josm/plugins/turnlanes/src/org/openstreetmap/josm/plugins/turnlanes/gui/TurnLanesDialog.java
r34994 r36369 2 2 package org.openstreetmap.josm.plugins.turnlanes.gui; 3 3 4 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; 4 5 import static org.openstreetmap.josm.tools.I18n.tr; 5 6 … … 48 49 super(tr("Edit"), "dialogs/edit", tr("Edit turn relations and lane lengths for selected node."), null, 49 50 false); 51 putValue("help", ht("/Action/TurnLanesEdit")); 50 52 } 51 53 … … 66 68 super(tr("Validate"), "dialogs/validator", tr("Validate turn- and lane-length-relations for consistency."), 67 69 null, false); 70 putValue("help", ht("/Action/TurnLanesValidate")); 68 71 } 69 72
Note:
See TracChangeset
for help on using the changeset viewer.