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 | 7431cb47c99961b9172df1e9cea70792653e50fb (patch) | |
tree | 33e2d3af817508c97dd078b7574af989948bfe62 /x11-libs/gtk+/files | |
parent | stable on mips (diff) | |
download | historical-7431cb47c99961b9172df1e9cea70792653e50fb.tar.gz historical-7431cb47c99961b9172df1e9cea70792653e50fb.tar.bz2 historical-7431cb47c99961b9172df1e9cea70792653e50fb.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) + { |