Changeset 8128 in josm
- Timestamp:
- 2015-03-09T00:02:34+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r7862 r8128 661 661 mouseState.mousePos = ((MouseEvent)event).getPoint(); 662 662 } 663 collector.notify ();663 collector.notifyAll(); 664 664 } 665 665 } … … 673 673 mouseState.modifiers = e.getModifiersEx(); 674 674 mouseState.mousePos = e.getPoint(); 675 collector.notify ();675 collector.notifyAll(); 676 676 } 677 677 } … … 687 687 synchronized (collector) { 688 688 mouseState.modifiers = e.getModifiersEx(); 689 collector.notify ();689 collector.notifyAll(); 690 690 } 691 691 }
Note:
See TracChangeset
for help on using the changeset viewer.