From: John Darrington Date: Mon, 24 May 2010 08:22:20 +0000 (+0200) Subject: Call expand all on Edit->SelectAll X-Git-Tag: v0.7.6~408 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=305ed1d0d88532c51404f6cff49c90c38635c671;p=pspp-builds.git Call expand all on Edit->SelectAll Expand the treeview widget before calling select_all, since this is probably what the user wants. --- diff --git a/src/ui/gui/psppire-output-window.c b/src/ui/gui/psppire-output-window.c index 3aee3139..294ca128 100644 --- a/src/ui/gui/psppire-output-window.c +++ b/src/ui/gui/psppire-output-window.c @@ -735,6 +735,7 @@ static void on_select_all (PsppireOutputWindow *window) { GtkTreeSelection *sel = gtk_tree_view_get_selection (window->overview); + gtk_tree_view_expand_all (window->overview); gtk_tree_selection_select_all (sel); }