Um, don't randomly subtract 4 from coordinates.

2000-11-01  Havoc Pennington  <hp@redhat.com>

	* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
	from coordinates.
This commit is contained in:
Havoc Pennington 2000-11-01 16:24:21 +00:00 committed by Havoc Pennington
parent b90d773c28
commit 1576774276
8 changed files with 41 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2000-11-01 Havoc Pennington <hp@redhat.com>
* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
from coordinates.
Wed Oct 25 20:10:57 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_copy): Only ref the window if

View File

@ -1,3 +1,8 @@
2000-11-01 Havoc Pennington <hp@redhat.com>
* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
from coordinates.
Wed Oct 25 20:10:57 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_copy): Only ref the window if

View File

@ -1,3 +1,8 @@
2000-11-01 Havoc Pennington <hp@redhat.com>
* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
from coordinates.
Wed Oct 25 20:10:57 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_copy): Only ref the window if

View File

@ -1,3 +1,8 @@
2000-11-01 Havoc Pennington <hp@redhat.com>
* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
from coordinates.
Wed Oct 25 20:10:57 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_copy): Only ref the window if

View File

@ -1,3 +1,8 @@
2000-11-01 Havoc Pennington <hp@redhat.com>
* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
from coordinates.
Wed Oct 25 20:10:57 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_copy): Only ref the window if

View File

@ -1,3 +1,8 @@
2000-11-01 Havoc Pennington <hp@redhat.com>
* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
from coordinates.
Wed Oct 25 20:10:57 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_copy): Only ref the window if

View File

@ -1,3 +1,8 @@
2000-11-01 Havoc Pennington <hp@redhat.com>
* gtk/gtkimage.c (gtk_image_expose): Um, don't randomly subtract 4
from coordinates.
Wed Oct 25 20:10:57 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkevents.c (gdk_event_copy): Only ref the window if

View File

@ -586,7 +586,8 @@ gtk_image_expose (GtkWidget *widget,
image_bound.y - y,
image_bound.x,
image_bound.y,
image_bound.width, image_bound.height,
image_bound.width,
image_bound.height,
GDK_PIXBUF_ALPHA_FULL,
128,
GDK_RGB_DITHER_NORMAL,
@ -601,9 +602,10 @@ gtk_image_expose (GtkWidget *widget,
widget->window,
image_bound.x - x,
image_bound.y - y,
image_bound.x - 4,
image_bound.y - 4,
image_bound.width, image_bound.height,
image_bound.x,
image_bound.y,
image_bound.width,
image_bound.height,
GDK_PIXBUF_ALPHA_FULL,
128,
GDK_RGB_DITHER_NORMAL,