Call expand all on Edit->SelectAll
authorJohn Darrington <john@darrington.wattle.id.au>
Mon, 24 May 2010 08:22:20 +0000 (10:22 +0200)
committerBen Pfaff <blp@cs.stanford.edu>
Mon, 24 May 2010 16:27:34 +0000 (09:27 -0700)
Expand the treeview widget before calling
select_all, since this is probably what the
user wants.

src/ui/gui/psppire-output-window.c

index 3aee31399df863a0502eac3527adb885d1124c48..294ca1285adc34fe3b316e81199325abc53bae5c 100644 (file)
@@ -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);
 }