gtk+ r22052 - in branches/gtk-2-14: . gtk
- From: matthiasc svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk+ r22052 - in branches/gtk-2-14: . gtk
- Date: Sat, 3 Jan 2009 07:14:54 +0000 (UTC)
Author: matthiasc
Date: Sat Jan 3 07:14:54 2009
New Revision: 22052
URL: http://svn.gnome.org/viewvc/gtk+?rev=22052&view=rev
Log:
Bug 558694 â Paned window splitter keynav broken
* gtk/gtkpaned.c (get_child_panes): Don't add unrealized
widgets.
Modified:
branches/gtk-2-14/ChangeLog
branches/gtk-2-14/gtk/gtkpaned.c
Modified: branches/gtk-2-14/gtk/gtkpaned.c
==============================================================================
--- branches/gtk-2-14/gtk/gtkpaned.c (original)
+++ branches/gtk-2-14/gtk/gtkpaned.c Sat Jan 3 07:14:54 2009
@@ -1598,6 +1598,9 @@
get_child_panes (GtkWidget *widget,
GList **panes)
{
+ if (!GTK_WIDGET_REALIZED (widget))
+ return;
+
if (GTK_IS_PANED (widget))
{
GtkPaned *paned = GTK_PANED (widget);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]