- Timestamp:
- 2019-04-16T07:13:03+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
r14993 r14995 109 109 public static final BooleanProperty PROP_ZOOM_INTERMEDIATE_STEPS = new BooleanProperty("zoom.intermediate-steps", true); 110 110 /** scale follows native resolution of layer status when layer is created */ 111 public static final BooleanProperty PROP_ZOOM_SCALE_FOLLOW S_NATIVE_RESOLUTION_AT_LOAD = new BooleanProperty(111 public static final BooleanProperty PROP_ZOOM_SCALE_FOLLOW_NATIVE_RES_AT_LOAD = new BooleanProperty( 112 112 "zoom.scale-follow-native-resolution-at-load", true); 113 113 -
trunk/src/org/openstreetmap/josm/gui/layer/AbstractTileSourceLayer.java
r14993 r14995 556 556 MapView.addZoomChangeListener(this); 557 557 558 if (this instanceof NativeScaleLayer && NavigatableComponent.PROP_ZOOM_SCALE_FOLLOW S_NATIVE_RESOLUTION_AT_LOAD.get()) {558 if (this instanceof NativeScaleLayer && NavigatableComponent.PROP_ZOOM_SCALE_FOLLOW_NATIVE_RES_AT_LOAD.get()) { 559 559 event.getMapView().setNativeScaleLayer((NativeScaleLayer) this); 560 560 }
Note:
See TracChangeset
for help on using the changeset viewer.