diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-26 07:56:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-26 07:56:01 +0200 |
commit | 7ce5233d24ac30c937bbf06acb8d0be1d990ed37 (patch) | |
tree | 9300d2ce0cb80a3161d8a4b6a7bbcd45fe62c639 | |
parent | e4d56001e6a0bd1c1a4d193cae59c639f090b64c (diff) | |
parent | d7b2ecacffa3f07c874b459955f5378daa2dad95 (diff) |
Merge pull request #32337 from CorattiS86/fixing_#32262
Fixed Show in file system should clear current search
-rw-r--r-- | editor/filesystem_dock.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index 426ea8f196..b91847097d 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -477,6 +477,7 @@ void FileSystemDock::_navigate_to_path(const String &p_path, bool p_select_in_fa } void FileSystemDock::navigate_to_path(const String &p_path) { + file_list_search_box->clear(); _navigate_to_path(p_path); } |