summaryrefslogtreecommitdiffstats
path: root/x11-libs/gtk+/files/gtk+-1.2.10-cvs-expose.patch
diff options
context:
space:
mode:
Diffstat (limited to 'x11-libs/gtk+/files/gtk+-1.2.10-cvs-expose.patch')
-rw-r--r--x11-libs/gtk+/files/gtk+-1.2.10-cvs-expose.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/x11-libs/gtk+/files/gtk+-1.2.10-cvs-expose.patch b/x11-libs/gtk+/files/gtk+-1.2.10-cvs-expose.patch
deleted file mode 100644
index 7fa625a..0000000
--- a/x11-libs/gtk+/files/gtk+-1.2.10-cvs-expose.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- gtk+-1.2.10/gdk/gdkevents.c.expose Sun Dec 3 17:02:49 2000
-+++ gtk+-1.2.10/gdk/gdkevents.c Wed Feb 13 17:53:38 2002
-@@ -383,6 +383,7 @@
- struct _GdkExposeInfo
- {
- Window window;
-+ Window toplevel_window;
- gboolean seen_nonmatching;
- };
-
-@@ -401,7 +402,9 @@
- * expose events.
- */
- if (xevent->xany.type != Expose &&
-- xevent->xany.type != GravityNotify)
-+ xevent->xany.type != GravityNotify &&
-+ (xevent->xany.type != ConfigureNotify ||
-+ xevent->xany.window == info->toplevel_window))
- {
- info->seen_nonmatching = TRUE;
- }
-@@ -429,6 +432,7 @@
- GdkEvent event;
-
- info.window = xevent->xany.window;
-+ info.toplevel_window = GDK_WINDOW_XWINDOW (gdk_window_get_toplevel (window));
- info.seen_nonmatching = FALSE;
-
- rect1.x = xevent->xexpose.x;