diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-06 07:55:13 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-06 07:55:13 +0800 |
commit | a4184d85f9020f558d80d8ef0531af9e2c3adc8f (patch) | |
tree | 5b35e1e4d5ebfb405158514fda7747bebd668b58 /lib | |
parent | 506921ce725352e13f62990a40f2b77f5d953a0f (diff) | |
download | gsoc2013-epiphany-a4184d85f9020f558d80d8ef0531af9e2c3adc8f.tar gsoc2013-epiphany-a4184d85f9020f558d80d8ef0531af9e2c3adc8f.tar.gz gsoc2013-epiphany-a4184d85f9020f558d80d8ef0531af9e2c3adc8f.tar.bz2 gsoc2013-epiphany-a4184d85f9020f558d80d8ef0531af9e2c3adc8f.tar.lz gsoc2013-epiphany-a4184d85f9020f558d80d8ef0531af9e2c3adc8f.tar.xz gsoc2013-epiphany-a4184d85f9020f558d80d8ef0531af9e2c3adc8f.tar.zst gsoc2013-epiphany-a4184d85f9020f558d80d8ef0531af9e2c3adc8f.zip |
Do not unselect all on single selection mode, to not generate useless node
2003-10-06 Marco Pesenti Gritti <marco@gnome.org>
* lib/widgets/ephy-node-view.c: (did_not_drag):
Do not unselect all on single selection mode, to not generate
useless node selection changes.
* src/ephy-history-window.c: (site_node_selected_cb):
Do not refilter if the new selected node is the same
as the old one.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-node-view.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c index 1c36a7768..435974b5e 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -739,7 +739,11 @@ did_not_drag (EphyNodeView *view, gtk_tree_selection_path_is_selected (selection, path) && !button_event_modifies_selection (event)) { - gtk_tree_selection_unselect_all (selection); + if (gtk_tree_selection_get_mode (selection) == GTK_SELECTION_MULTIPLE) + { + gtk_tree_selection_unselect_all (selection); + } + gtk_tree_selection_select_path (selection, path); } |