diff options
| author | Juan Linietsky | 2017-01-10 01:49:55 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-01-10 01:49:55 -0300 |
| commit | 48097f6df364b040848fb8963f15738d760a72ed (patch) | |
| tree | 8816df759d41837fb333bb4a0c7515e89f00e3d0 /tools/editor/plugins/polygon_2d_editor_plugin.cpp | |
| parent | a503f8aadcb8cbc85bde589fb25ea06e599b367b (diff) | |
| download | godot-48097f6df364b040848fb8963f15738d760a72ed.tar.gz godot-48097f6df364b040848fb8963f15738d760a72ed.tar.zst godot-48097f6df364b040848fb8963f15738d760a72ed.zip | |
Removed the set_child_rect() in AcceptDialog. AcceptDialog now works as a container!
Diffstat (limited to 'tools/editor/plugins/polygon_2d_editor_plugin.cpp')
| -rw-r--r-- | tools/editor/plugins/polygon_2d_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/polygon_2d_editor_plugin.cpp b/tools/editor/plugins/polygon_2d_editor_plugin.cpp index cde6912a1..ebff3f313 100644 --- a/tools/editor/plugins/polygon_2d_editor_plugin.cpp +++ b/tools/editor/plugins/polygon_2d_editor_plugin.cpp @@ -853,7 +853,7 @@ Polygon2DEditor::Polygon2DEditor(EditorNode *p_editor) { VBoxContainer *uv_main_vb = memnew( VBoxContainer ); uv_edit->add_child(uv_main_vb); - uv_edit->set_child_rect(uv_main_vb); + //uv_edit->set_child_rect(uv_main_vb); HBoxContainer *uv_mode_hb = memnew( HBoxContainer ); uv_main_vb->add_child(uv_mode_hb); for(int i=0;i<UV_MODE_MAX;i++) { |
