Bug 558694 – Paned window splitter keynav broken

* gtk/gtkpaned.c (get_child_panes): Don't add unrealized
        widgets.


svn path=/branches/gtk-2-14/; revision=22052
This commit is contained in:
Matthias Clasen
2009-01-03 07:14:54 +00:00
parent 27da2ad464
commit f9947ebb34
2 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,12 @@
2009-01-03 Matthias Clasen <mclasen@redhat.com>
Merged from trunk:
Bug 558694 Paned window splitter keynav broken
* gtk/gtkpaned.c (get_child_panes): Don't add unrealized
widgets.
2009-01-03 Matthias Clasen <mclasen@redhat.com>
Merged from trunk:

View File

@@ -1598,6 +1598,9 @@ static void
get_child_panes (GtkWidget *widget,
GList **panes)
{
if (!GTK_WIDGET_REALIZED (widget))
return;
if (GTK_IS_PANED (widget))
{
GtkPaned *paned = GTK_PANED (widget);