1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Fix wrong position of LineEdit in Scene editor

This commit is contained in:
Franklin Sobrinho
2016-01-26 16:03:28 -03:00
parent e5c5f58085
commit 66eb28b945

View File

@@ -2316,7 +2316,7 @@ bool Tree::edit_selected() {
return false;
Rect2 rect;
rect.pos.y = get_item_offset(s) - v_scroll->get_val();
rect.pos.y = get_item_offset(s) - get_scroll().y;
for(int i=0;i<col;i++) {