diff options
| author | Poommetee Ketson | 2017-07-07 15:22:23 +0700 |
|---|---|---|
| committer | Poommetee Ketson | 2017-07-07 20:42:39 +0700 |
| commit | a94ea0b9fe370e749d7d2e65e0d48ddd6a8f5e61 (patch) | |
| tree | fd20e75137258de351970cab4669881e8680f0e0 /editor/script_create_dialog.h | |
| parent | 8b362b50094ccd332c6ee3d0853a6b9b49f70253 (diff) | |
| download | godot-a94ea0b9fe370e749d7d2e65e0d48ddd6a8f5e61.tar.gz godot-a94ea0b9fe370e749d7d2e65e0d48ddd6a8f5e61.tar.zst godot-a94ea0b9fe370e749d7d2e65e0d48ddd6a8f5e61.zip | |
ScriptCreateDialog: fix open error crash, remember template
Diffstat (limited to '')
| -rw-r--r-- | editor/script_create_dialog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/script_create_dialog.h b/editor/script_create_dialog.h index 1adbfe3f7..f503b878f 100644 --- a/editor/script_create_dialog.h +++ b/editor/script_create_dialog.h @@ -59,7 +59,6 @@ class ScriptCreateDialog : public ConfirmationDialog { bool create_new; bool is_browsing_parent; String initial_bp; - EditorSettings *editor_settings; bool is_new_script_created; bool is_path_valid; bool has_named_classes; @@ -70,6 +69,7 @@ class ScriptCreateDialog : public ConfirmationDialog { int current_language; bool re_check_path; String script_template; + Vector<String> template_list; void _path_changed(const String &p_path = String()); void _lang_changed(int l = 0); |
