diff options
| author | Maximillian | 2015-08-09 16:55:59 -0700 |
|---|---|---|
| committer | Maximillian | 2015-08-09 16:55:59 -0700 |
| commit | bc9952f1c787bc5a42d470a601e112af7319993a (patch) | |
| tree | 9672f3b2e6e2f8659e96e26c234265f5ed9538e0 /tools/editor/plugins/script_editor_plugin.cpp | |
| parent | 8f83f6c67551b86f4eb0661d5594f29e5c84a51c (diff) | |
| download | godot-bc9952f1c787bc5a42d470a601e112af7319993a.tar.gz godot-bc9952f1c787bc5a42d470a601e112af7319993a.tar.zst godot-bc9952f1c787bc5a42d470a601e112af7319993a.zip | |
Fix create script dialog title(s)
Diffstat (limited to 'tools/editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | tools/editor/plugins/script_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index 250b82706..bd0f580a3 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -1907,6 +1907,7 @@ ScriptEditor::ScriptEditor(EditorNode *p_editor) { erase_tab_confirm->connect("confirmed", this,"_close_current_tab"); script_create_dialog = memnew(ScriptCreateDialog); + script_create_dialog->set_title("Create Script"); add_child(script_create_dialog); script_create_dialog->connect("script_created", this, "_script_created"); |
