Removed less than condition

This commit is contained in:
Andrew Murray 2018-09-09 13:57:01 +10:00
parent fbe5bdb6b6
commit 558e70d8cd

View File

@ -855,7 +855,7 @@ ellipse(Imaging im, int x0, int y0, int x1, int y1,
if (i != start) {
if (mode == PIESLICE) {
if (x != cx || y != cy) {
if (width <= 1) {
if (width == 1) {
draw->line(im, x, y, cx, cy, ink);
draw->line(im, cx, cy, sx, sy, ink);
} else {