diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-01-10 01:49:55 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2017-01-10 01:49:55 -0300 |
commit | 48097f6df364b040848fb8963f15738d760a72ed (patch) | |
tree | 8816df759d41837fb333bb4a0c7515e89f00e3d0 /tools/editor/plugins/script_text_editor.cpp | |
parent | a503f8aadcb8cbc85bde589fb25ea06e599b367b (diff) | |
download | redot-engine-48097f6df364b040848fb8963f15738d760a72ed.tar.gz |
Removed the set_child_rect() in AcceptDialog. AcceptDialog now works as a container!
Diffstat (limited to 'tools/editor/plugins/script_text_editor.cpp')
-rw-r--r-- | tools/editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/script_text_editor.cpp b/tools/editor/plugins/script_text_editor.cpp index ba628b0985..391578817a 100644 --- a/tools/editor/plugins/script_text_editor.cpp +++ b/tools/editor/plugins/script_text_editor.cpp @@ -1280,7 +1280,7 @@ ScriptTextEditor::ScriptTextEditor() { add_child(color_panel); color_picker = memnew(ColorPicker); color_panel->add_child(color_picker); - color_panel->set_child_rect(color_picker); + color_panel->set_child_rect(color_picker); //NOT color_picker->connect("color_changed", this, "_color_changed"); edit_hb = memnew (HBoxContainer); |