mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
ScriptCreateDialog: Fix loading scripts with named classes.
We only need to validate the class name when creating a new script, existing scripts already have one. Fixes #14643 Supersedes/Closes #14684
This commit is contained in:
parent
19af42b353
commit
0de3cde6fc
@ -459,7 +459,7 @@ void ScriptCreateDialog::_update_dialog() {
|
||||
script_ok = false;
|
||||
}
|
||||
}
|
||||
if (has_named_classes && (!is_class_name_valid)) {
|
||||
if (has_named_classes && (is_new_script_created && !is_class_name_valid)) {
|
||||
_msg_script_valid(false, TTR("Invalid class name"));
|
||||
script_ok = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user