Include eventbox for expander. (#137564, reported by Jacques Garrigue)

Thu Mar 18 12:10:45 2004  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtktreeitem.c (gtk_tree_item_forall): Include
        eventbox for expander. (#137564, reported by
        Jacques Garrigue)
This commit is contained in:
Owen Taylor
2004-03-18 18:53:19 +00:00
committed by Owen Taylor
parent 584c14f46d
commit a6790fc471
6 changed files with 32 additions and 0 deletions

View File

@ -1036,4 +1036,6 @@ gtk_tree_item_forall (GtkContainer *container,
(* callback) (bin->child, callback_data);
if (include_internals && tree_item->subtree)
(* callback) (tree_item->subtree, callback_data);
if (include_internals && tree_item->pixmaps_box)
(* callback) (tree_item->pixmaps_box, callback_data);
}