Ticket #20253: 20253.patch
File 20253.patch, 770 bytes (added by , 2 months ago) |
---|
-
src/org/openstreetmap/josm/gui/draw/MapViewPath.java
170 170 } else { 171 171 lineTo(n); 172 172 } 173 if ( close &&first == null) {173 if (first == null) { 174 174 first = n; 175 175 } 176 176 useMoveTo = false; 177 177 } 178 if (first != null) { 179 lineTo(first); 178 if (close && first != null) { 179 if (!connect) 180 closePath(); 181 else { 182 lineTo(first); 183 } 180 184 } 181 185 } 182 186