summaryrefslogtreecommitdiffstats
path: root/tools/editor/quick_open.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-01-10 01:49:55 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-01-10 01:49:55 -0300
commit48097f6df364b040848fb8963f15738d760a72ed (patch)
tree8816df759d41837fb333bb4a0c7515e89f00e3d0 /tools/editor/quick_open.cpp
parenta503f8aadcb8cbc85bde589fb25ea06e599b367b (diff)
downloadredot-engine-48097f6df364b040848fb8963f15738d760a72ed.tar.gz
Removed the set_child_rect() in AcceptDialog. AcceptDialog now works as a container!
Diffstat (limited to 'tools/editor/quick_open.cpp')
-rw-r--r--tools/editor/quick_open.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/quick_open.cpp b/tools/editor/quick_open.cpp
index f1746efd69..ff5ecdf01b 100644
--- a/tools/editor/quick_open.cpp
+++ b/tools/editor/quick_open.cpp
@@ -266,7 +266,7 @@ EditorQuickOpen::EditorQuickOpen() {
VBoxContainer *vbc = memnew( VBoxContainer );
add_child(vbc);
- set_child_rect(vbc);
+ //set_child_rect(vbc);
search_box = memnew( LineEdit );
vbc->add_margin_child(TTR("Search:"),search_box);
search_box->connect("text_changed",this,"_text_changed");