diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fl_arci.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fl_arci.cxx b/src/fl_arci.cxx index f4c56904f..39116b1e2 100644 --- a/src/fl_arci.cxx +++ b/src/fl_arci.cxx @@ -84,7 +84,7 @@ void fl_pie(int x,int y,int w,int h,double a1,double a2) { int xb = x+w/2+int(w*cos(a2/180.0*M_PI)); int yb = y+h/2-int(h*sin(a2/180.0*M_PI)); SelectObject(fl_gc, fl_brush()); - Pie(fl_gc, x, y, x+w, y+h, xa, ya, xb, yb); + Pie(fl_gc, x, y, x+w+1, y+h+1, xa, ya, xb, yb); #elif defined(__APPLE_QD__) Rect r; r.left=x; r.right=x+w+1; r.top=y; r.bottom=y+h+1; a1 = a2-a1; a2 = 450-a2; |
