Fix obvious bug in circle drawing.

2000-10-04  Jonathan Blandford  <jrb@redhat.com>

	* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
	drawing.
This commit is contained in:
Jonathan Blandford 2000-10-04 23:16:05 +00:00 committed by Jonathan Blandford
parent 468689e31a
commit 76806e9a1e
8 changed files with 36 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-10-04 Jonathan Blandford <jrb@redhat.com>
* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.
Wed Oct 4 15:52:15 2000 <otaylor@redhat.com> Wed Oct 4 15:52:15 2000 <otaylor@redhat.com>
* gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed): * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):

View File

@ -1,3 +1,8 @@
2000-10-04 Jonathan Blandford <jrb@redhat.com>
* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.
Wed Oct 4 15:52:15 2000 <otaylor@redhat.com> Wed Oct 4 15:52:15 2000 <otaylor@redhat.com>
* gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed): * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):

View File

@ -1,3 +1,8 @@
2000-10-04 Jonathan Blandford <jrb@redhat.com>
* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.
Wed Oct 4 15:52:15 2000 <otaylor@redhat.com> Wed Oct 4 15:52:15 2000 <otaylor@redhat.com>
* gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed): * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):

View File

@ -1,3 +1,8 @@
2000-10-04 Jonathan Blandford <jrb@redhat.com>
* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.
Wed Oct 4 15:52:15 2000 <otaylor@redhat.com> Wed Oct 4 15:52:15 2000 <otaylor@redhat.com>
* gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed): * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):

View File

@ -1,3 +1,8 @@
2000-10-04 Jonathan Blandford <jrb@redhat.com>
* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.
Wed Oct 4 15:52:15 2000 <otaylor@redhat.com> Wed Oct 4 15:52:15 2000 <otaylor@redhat.com>
* gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed): * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):

View File

@ -1,3 +1,8 @@
2000-10-04 Jonathan Blandford <jrb@redhat.com>
* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.
Wed Oct 4 15:52:15 2000 <otaylor@redhat.com> Wed Oct 4 15:52:15 2000 <otaylor@redhat.com>
* gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed): * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):

View File

@ -1,3 +1,8 @@
2000-10-04 Jonathan Blandford <jrb@redhat.com>
* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.
Wed Oct 4 15:52:15 2000 <otaylor@redhat.com> Wed Oct 4 15:52:15 2000 <otaylor@redhat.com>
* gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed): * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):

View File

@ -937,7 +937,7 @@ gdk_window_draw_arc (GdkDrawable *drawable,
{ {
GdkWindowPaint *paint = private->paint_stack->data; GdkWindowPaint *paint = private->paint_stack->data;
gdk_draw_arc (paint->pixmap, gc, filled, gdk_draw_arc (paint->pixmap, gc, filled,
x - x_offset, y_offset, x - x_offset, y - y_offset,
width, height, angle1, angle2); width, height, angle1, angle2);
} }
else else