diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-10-09 12:34:55 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-10-09 12:34:55 +0000 |
commit | be70d317c68cb0308a5b4cf1e2973e480fdf04a3 (patch) | |
tree | 3009553bbad8965798d8fa607fc34628d5a54ffe /x11-libs/gtk+/files | |
parent | stable on mips (diff) | |
download | gentoo-2-be70d317c68cb0308a5b4cf1e2973e480fdf04a3.tar.gz gentoo-2-be70d317c68cb0308a5b4cf1e2973e480fdf04a3.tar.bz2 gentoo-2-be70d317c68cb0308a5b4cf1e2973e480fdf04a3.zip |
add bugfix
Diffstat (limited to 'x11-libs/gtk+/files')
-rw-r--r-- | x11-libs/gtk+/files/gtk+-2.2-notificationarea_loop.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11-libs/gtk+/files/gtk+-2.2-notificationarea_loop.patch b/x11-libs/gtk+/files/gtk+-2.2-notificationarea_loop.patch new file mode 100644 index 000000000000..b67e218a0cdf --- /dev/null +++ b/x11-libs/gtk+/files/gtk+-2.2-notificationarea_loop.patch @@ -0,0 +1,12 @@ +diff -ur gtk+-2.2.4.orig/gtk/gtksocket.c gtk+-2.2.4/gtk/gtksocket.c +--- gtk+-2.2.4.orig/gtk/gtksocket.c 2003-10-06 20:42:48.679102912 -0400 ++++ gtk+-2.2.4/gtk/gtksocket.c 2003-10-06 20:43:02.267037232 -0400 +@@ -840,7 +840,7 @@ + if (socket->plug_widget) + return gtk_widget_child_focus (socket->plug_widget, direction); + +- if (!GTK_WIDGET_HAS_FOCUS (widget)) ++ if (!gtk_widget_is_focus (widget)) + { + switch (direction) + { |