treeview: Fix positioning of editing widgets

This looks like a thinko.
This commit is contained in:
Benjamin Otte
2016-02-25 03:57:11 +01:00
parent 18abf86510
commit 9016a00edd

View File

@@ -2984,7 +2984,7 @@ gtk_tree_view_size_allocate (GtkWidget *widget,
path = _gtk_tree_path_new_from_rbtree (child->tree, child->node);
gtk_tree_view_get_cell_area (tree_view, path, child->column, &child_rect);
child_rect.x += child->border.left;
child_rect.y += child->border.right;
child_rect.y += child->border.top;
child_rect.width -= child->border.left + child->border.right;
child_rect.height -= child->border.top + child->border.bottom;