diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-08 00:33:26 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-08 00:34:59 +0800 |
commit | 725a91f5fa33440c71efb09f8aea70630392e05a (patch) | |
tree | bcbc6ecfba810661eee27d53193923c02a9ded80 /lib | |
parent | 232f5f0cc853dd654a07333a29c9cc236979c4d1 (diff) | |
download | gsoc2013-epiphany-725a91f5fa33440c71efb09f8aea70630392e05a.tar.gz gsoc2013-epiphany-725a91f5fa33440c71efb09f8aea70630392e05a.tar.zst gsoc2013-epiphany-725a91f5fa33440c71efb09f8aea70630392e05a.zip |
ephy-history-view: remove unneeded unselect_all()
This breaks selection in _BROWSE mode, and we don't really need it
anyway.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-history-view.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/widgets/ephy-history-view.c b/lib/widgets/ephy-history-view.c index 2db3499c3..461d308a2 100644 --- a/lib/widgets/ephy-history-view.c +++ b/lib/widgets/ephy-history-view.c @@ -75,8 +75,7 @@ ephy_history_view_button_press (GtkWidget *treeview, g_signal_emit_by_name (treeview, "popup_menu", &retval); } gtk_tree_path_free (path); - } else - gtk_tree_selection_unselect_all (selection); + } return FALSE; } |