Merge pull request #35855 from YeldhamDev/script_builtin_load_fix

Fix built-in script creation loading existing scripts by mistake
This commit is contained in:
Rémi Verschelde 2020-02-05 14:21:58 +01:00 committed by GitHub
commit 9591ca3fe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -84,7 +84,9 @@ void ScriptCreateDialog::_path_hbox_sorted() {
int filename_start_pos = initial_bp.find_last("/") + 1;
int filename_end_pos = initial_bp.length();
if (!is_built_in) {
file_path->select(filename_start_pos, filename_end_pos);
}
// First set cursor to the end of line to scroll LineEdit view
// to the right and then set the actual cursor position.
@ -575,6 +577,10 @@ void ScriptCreateDialog::_browse_class_in_tree() {
void ScriptCreateDialog::_path_changed(const String &p_path) {
if (is_built_in) {
return;
}
is_path_valid = false;
is_new_script_created = true;