summary refs log tree commit diff stats
path: root/src/fe-gtk/chanview-tree.c
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2013-10-05 22:21:04 -0400
committerTingPing <tingping@tingping.se>2013-10-05 22:21:04 -0400
commitc463236521186307d6195f9161c0b82d057f5ba3 (patch)
tree5542c46d719d2cc20b7ab5e7dc160315d8f45b39 /src/fe-gtk/chanview-tree.c
parent435e8881ed7a21014d70069752d64267e92b7735 (diff)
Round two of gtk accessor functions: chanview-tabs
Diffstat (limited to 'src/fe-gtk/chanview-tree.c')
-rw-r--r--src/fe-gtk/chanview-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/chanview-tree.c b/src/fe-gtk/chanview-tree.c
index 4e9dd8a8..e1e53dcf 100644
--- a/src/fe-gtk/chanview-tree.c
+++ b/src/fe-gtk/chanview-tree.c
@@ -265,7 +265,7 @@ cv_tree_focus (chan *ch)
 		gtk_tree_view_get_visible_rect (tree, &vis_rect);
 
 		/* The cordinates aren't offset correctly */
-		gtk_tree_view_widget_to_tree_coords( tree, cell_rect.x, cell_rect.y, NULL, &cell_rect.y );
+		gtk_tree_view_convert_widget_to_bin_window_coords ( tree, cell_rect.x, cell_rect.y, NULL, &cell_rect.y );
 
 		/* only need to scroll if out of bounds */
 		if (cell_rect.y < vis_rect.y ||