Skip to content

Commit

Permalink
Fix obvious bug in circle drawing.
Browse files Browse the repository at this point in the history
2000-10-04  Jonathan Blandford  <jrb@redhat.com>

	* gdk/gdkwindow.c (gdk_window_draw_arc): Fix obvious bug in circle
	drawing.
  • Loading branch information
Jonathan Blandford authored and Jonathan Blandford committed Oct 4, 2000
1 parent 468689e commit 76806e9
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.pre-2-0
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.pre-2-10
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.pre-2-2
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.pre-2-4
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.pre-2-6
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.pre-2-8
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
2 changes: 1 addition & 1 deletion gdk/gdkwindow.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 76806e9

Please sign in to comment.