forked from AuroraMiddleware/gtk
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:
parent
b90d773c28
commit
1576774276
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user