- Timestamp:
- 2016-07-28T00:29:14+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/SelectionManager.java
r10659 r10661 92 92 @Override 93 93 public void paint(Graphics2D g, MapView mv, Bounds bbox) { 94 if (mousePos == null || mousePosStart == null || mousePos .equals(mousePosStart))94 if (mousePos == null || mousePosStart == null || mousePos == mousePosStart) 95 95 return; 96 96 Color color = Utils.complement(PaintColors.getBackgroundColor()); … … 279 279 280 280 private boolean isNoSelection() { 281 return mousePos == null || mousePosStart == null || mousePos .equals(mousePosStart);281 return mousePos == null || mousePosStart == null || mousePos == mousePosStart; 282 282 } 283 283
Note:
See TracChangeset
for help on using the changeset viewer.