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/editor_reimport_dialog.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/editor_reimport_dialog.cpp')
| -rw-r--r-- | tools/editor/editor_reimport_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_reimport_dialog.cpp b/tools/editor/editor_reimport_dialog.cpp index 7cb4e7672..c6a8f13dc 100644 --- a/tools/editor/editor_reimport_dialog.cpp +++ b/tools/editor/editor_reimport_dialog.cpp @@ -135,7 +135,7 @@ EditorReImportDialog::EditorReImportDialog() { tree = memnew( Tree ); add_child(tree); tree->set_hide_root(true); - set_child_rect(tree); + //set_child_rect(tree); set_title(TTR("Re-Import Changed Resources")); error = memnew( AcceptDialog); add_child(error); |
