# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1320019099 0 # Node ID ee9a233f1b427835d2157ec355206c6d73c40f3c # Parent 700dc6818431e2c2f28fc6b8ff6d219eaeb8fb02 Fixed DW_DRAW_FULL for arcs on Mac. Rectangle was being created incorrectly. diff -r 700dc6818431 -r ee9a233f1b42 mac/dw.m --- a/mac/dw.m Sun Oct 30 12:33:07 2011 +0000 +++ b/mac/dw.m Sun Oct 30 23:58:19 2011 +0000 @@ -5271,7 +5271,7 @@ /* Special case of a full circle/oval */ if(flags & DW_DRAW_FULL) { - [aPath appendBezierPathWithOvalInRect:NSMakeRect(x1, y1, x2, y2)]; + [aPath appendBezierPathWithOvalInRect:NSMakeRect(x1, y1, x2 - x1, y2 - y1)]; } else {