Changeset 31962 in osm for applications/editors
- Timestamp:
- 2016-01-07T19:33:37+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustMapMode.java
r30883 r31962 186 186 worker.doMousePressed(evt, getVisibleGeoImageLayers()); 187 187 } 188 189 @Override 190 public void mouseReleased(MouseEvent evt) { 191 worker.doMouseReleased(evt); 192 } 188 193 }; 189 194 -
applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustWorker.java
r31922 r31962 41 41 * restoreCenterView() to restore the original state. 42 42 */ 43 public void disableCenterView() {43 public synchronized void disableCenterView() { 44 44 if (!centerViewIsDisabled) { 45 45 centerViewIsDisabled = true; … … 52 52 * disableCenterView() was called. 53 53 */ 54 public void restoreCenterView() {54 public synchronized void restoreCenterView() { 55 55 if (centerViewIsDisabled) { 56 56 if (centerViewNeedsEnable) {
Note:
See TracChangeset
for help on using the changeset viewer.