diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-21 09:36:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 09:36:44 +0200 |
commit | 78e335566bfcca218d51ee372b652839c4511f48 (patch) | |
tree | f003ca2c7cb1908e82928be2972441d5463bfd62 | |
parent | 83758a9004b313f86df496aa5f8b83b2ea14a6b2 (diff) | |
parent | ab2eac8e3fd4461b198ee973fa0c90f03fe9dccf (diff) |
Merge pull request #22304 from YeldhamDev/filedock_path_start_fix
Make filesystem dock's path bar start with said path written
-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 bd1d355fb3..194cbd4e80 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -2248,6 +2248,7 @@ FileSystemDock::FileSystemDock(EditorNode *p_editor) { current_path = memnew(LineEdit); current_path->set_h_size_flags(SIZE_EXPAND_FILL); + current_path->set_text(path); toolbar_hbc->add_child(current_path); button_reload = memnew(Button); |