diff options
| author | Juan Linietsky | 2016-06-11 21:38:25 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-06-11 21:38:25 -0300 |
| commit | 5c5e22b252df8deb7ac1d53288703807a9229da8 (patch) | |
| tree | fb731cc6907cae8cd81f0128822c4f72d751d41b /tools/editor/editor_node.cpp | |
| parent | ef9720c8f032ec85ccc45b21db5705050b5e2d48 (diff) | |
| download | godot-5c5e22b252df8deb7ac1d53288703807a9229da8.tar.gz godot-5c5e22b252df8deb7ac1d53288703807a9229da8.tar.zst godot-5c5e22b252df8deb7ac1d53288703807a9229da8.zip | |
Fix the warning message from not using the editor theme, closes #5002
Diffstat (limited to 'tools/editor/editor_node.cpp')
| -rw-r--r-- | tools/editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index a21eae232..b90b017f5 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -6275,7 +6275,7 @@ EditorNode::EditorNode() { logo->set_texture(gui_base->get_icon("Logo","EditorIcons") ); warning = memnew( AcceptDialog ); - add_child(warning); + gui_base->add_child(warning); |
