Fixed !is_inside_tree() errors in file dialog
Fixed !is_inside_tree() errors appearing when current_file has a . in it.
This commit is contained in:
parent
c93888ae71
commit
2b13938459
1 changed files with 2 additions and 1 deletions
|
@ -582,7 +582,8 @@ void FileDialog::set_current_file(const String &p_file) {
|
|||
int lp = p_file.find_last(".");
|
||||
if (lp != -1) {
|
||||
file->select(0, lp);
|
||||
file->grab_focus();
|
||||
if (file->is_inside_tree())
|
||||
file->grab_focus();
|
||||
}
|
||||
}
|
||||
void FileDialog::set_current_path(const String &p_path) {
|
||||
|
|
Loading…
Reference in a new issue