]> Pileus Git - ~andy/gtk/commitdiff
Fix obvious bug in circle drawing.
authorJonathan Blandford <jrb@redhat.com>
Wed, 4 Oct 2000 23:16:05 +0000 (23:16 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Wed, 4 Oct 2000 23:16:05 +0000 (23:16 +0000)
2000-10-04  Jonathan Blandford  <jrb@redhat.com>

* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
drawing.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdkwindow.c

index 0a60fa3ee92a6c587a9de16622959cfde6ef9144..3bb78c444ff84a3b448493d658d6853d8575015d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
index 0a60fa3ee92a6c587a9de16622959cfde6ef9144..3bb78c444ff84a3b448493d658d6853d8575015d 100644 (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>
 
        * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
index 0a60fa3ee92a6c587a9de16622959cfde6ef9144..3bb78c444ff84a3b448493d658d6853d8575015d 100644 (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>
 
        * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
index 0a60fa3ee92a6c587a9de16622959cfde6ef9144..3bb78c444ff84a3b448493d658d6853d8575015d 100644 (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>
 
        * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
index 0a60fa3ee92a6c587a9de16622959cfde6ef9144..3bb78c444ff84a3b448493d658d6853d8575015d 100644 (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>
 
        * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
index 0a60fa3ee92a6c587a9de16622959cfde6ef9144..3bb78c444ff84a3b448493d658d6853d8575015d 100644 (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>
 
        * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
index 0a60fa3ee92a6c587a9de16622959cfde6ef9144..3bb78c444ff84a3b448493d658d6853d8575015d 100644 (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>
 
        * gdk/x11/gdkselection-x11.c (_gdk_selection_window_destroyed):
index bad3113e63d84ee01452fb56e046919217689c47..d804aa2682303fb77ebec675822c624f986f194e 100644 (file)
@@ -937,7 +937,7 @@ gdk_window_draw_arc (GdkDrawable *drawable,
     {
       GdkWindowPaint *paint = private->paint_stack->data;
       gdk_draw_arc (paint->pixmap, gc, filled,
-                   x - x_offset, y_offset,
+                   x - x_offset, y - y_offset,
                    width, height, angle1, angle2);
     }
   else