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
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ void ScriptCreateDialog::_update_dialog() {
|
||||||
script_ok = false;
|
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"));
|
_msg_script_valid(false, TTR("Invalid class name"));
|
||||||
script_ok = false;
|
script_ok = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue