Prevent FileDialog from stealing focus when setting current file in editor
This commit is contained in:
parent
48fc70e3f7
commit
cfb89b672e
1 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@
|
|||
/*************************************************************************/
|
||||
|
||||
#include "file_dialog.h"
|
||||
|
||||
#include "core/os/keyboard.h"
|
||||
#include "core/print_string.h"
|
||||
#include "scene/gui/label.h"
|
||||
|
@ -596,7 +597,7 @@ void FileDialog::set_current_file(const String &p_file) {
|
|||
int lp = p_file.find_last(".");
|
||||
if (lp != -1) {
|
||||
file->select(0, lp);
|
||||
if (file->is_inside_tree())
|
||||
if (file->is_inside_tree() && !get_tree()->is_node_being_edited(file))
|
||||
file->grab_focus();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue