aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-history-window.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2003-10-06 07:55:13 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2003-10-06 07:55:13 +0800
commita4184d85f9020f558d80d8ef0531af9e2c3adc8f (patch)
tree5b35e1e4d5ebfb405158514fda7747bebd668b58 /src/ephy-history-window.c
parent506921ce725352e13f62990a40f2b77f5d953a0f (diff)
downloadgsoc2013-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 'src/ephy-history-window.c')
-rw-r--r--src/ephy-history-window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c
index 72de063d9..613218949 100644
--- a/src/ephy-history-window.c
+++ b/src/ephy-history-window.c
@@ -966,6 +966,8 @@ site_node_selected_cb (EphyNodeView *view,
{
EphyNode *pages;
+ if (editor->priv->selected_site == node) return;
+
editor->priv->selected_site = node;
if (node == NULL)