From 305ed1d0d88532c51404f6cff49c90c38635c671 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Mon, 24 May 2010 10:22:20 +0200 Subject: [PATCH] Call expand all on Edit->SelectAll Expand the treeview widget before calling select_all, since this is probably what the user wants. --- src/ui/gui/psppire-output-window.c | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.30.2