Ignore:
Timestamp:
2017-11-23T03:14:45+01:00 (8 years ago)
Author:
Don-vip
Message:

fix #14778 - stroke not reset after drawing of large areas produced graphics artifacts when painting world bounds and selection rectangles, bug seen when filtering ways only, as way rendering reset the stroke

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/org/openstreetmap/josm/gui/layer/AbstractMapViewPaintable.java ΒΆ

    r12107 r13150  
    8585     */
    8686    public void invalidate() {
     87        PaintableInvalidationEvent event = new PaintableInvalidationEvent(this);
    8788        for (PaintableInvalidationListener l : invalidationListeners) {
    88             l.paintableInvalidated(new PaintableInvalidationEvent(this));
     89            l.paintableInvalidated(event);
    8990        }
    9091    }
Note: See TracChangeset for help on using the changeset viewer.