summary refs log tree commit diff stats
path: root/src/fe-gtk/chanview-tree.c
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-01-08 09:03:50 -0500
committerTingPing <tingping@tingping.se>2014-01-08 09:03:50 -0500
commitaae6633c28ddcdad834f5ad0fe4f890e96c2afa0 (patch)
tree5eebf33524510497d3a7780c9bf7ad0c544cfffb /src/fe-gtk/chanview-tree.c
parent91ea5b6907ccb570818d0e91a98afbe59cdaf57e (diff)
Don't select tab while closing with middle-click
Also fix unused warning and ignore shift right click
Diffstat (limited to 'src/fe-gtk/chanview-tree.c')
-rw-r--r--src/fe-gtk/chanview-tree.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/fe-gtk/chanview-tree.c b/src/fe-gtk/chanview-tree.c
index 09ca2dbb..07806860 100644
--- a/src/fe-gtk/chanview-tree.c
+++ b/src/fe-gtk/chanview-tree.c
@@ -57,12 +57,10 @@ static gboolean
 cv_tree_click_cb (GtkTreeView *tree, GdkEventButton *event, chanview *cv)
 {
 	chan *ch;
-	GtkTreeSelection *sel;
 	GtkTreePath *path;
 	GtkTreeIter iter;
 	int ret = FALSE;
 
-	sel = gtk_tree_view_get_selection (tree);
 	if (gtk_tree_view_get_path_at_pos (tree, event->x, event->y, &path, 0, 0, 0))
 	{
 		if (gtk_tree_model_get_iter (GTK_TREE_MODEL (cv->store), &iter, path))