# HG changeset patch # User mhessling@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1300419504 0 # Node ID 9b0c22b58447fc2720088bfcd0b1f82b0061b94c # Parent 82cde14ec084b6bd18390c4dd616492204a13ad0 Don't fill a rectangle unless requested to diff -r 82cde14ec084 -r 9b0c22b58447 mac/dw.m --- a/mac/dw.m Fri Mar 18 03:17:28 2011 +0000 +++ b/mac/dw.m Fri Mar 18 03:38:24 2011 +0000 @@ -4020,7 +4020,8 @@ [aPath lineToPoint:NSMakePoint(x + width, y + height)]; [aPath lineToPoint:NSMakePoint(x + width, y)]; [aPath closePath]; - [aPath fill]; + if(fill) + [aPath fill]; [aPath stroke]; [image unlockFocus]; DW_MUTEX_UNLOCK;