projects
/
pspp-builds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fae7f48
)
Call expand all on Edit->SelectAll
author
John Darrington
<john@darrington.wattle.id.au>
Mon, 24 May 2010 08:22:20 +0000
(10:22 +0200)
committer
Ben 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
patch
|
blob
|
history
diff --git
a/src/ui/gui/psppire-output-window.c
b/src/ui/gui/psppire-output-window.c
index 3aee31399df863a0502eac3527adb885d1124c48..294ca1285adc34fe3b316e81199325abc53bae5c 100644
(file)
--- 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);
}