diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-05 16:47:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-05 16:47:11 +0100 |
commit | 6677baedbe195def4af41c9f592b92d8b76ef86a (patch) | |
tree | a9ccddc079bb55d4ff24f11ddfdca01fc84ebcd6 /scene | |
parent | 45e7306b5adec09746fefda902a5414e5b53fdfa (diff) | |
parent | a292d1fefb22b78b155e8daff739c589f3c94fc1 (diff) |
Merge pull request #26631 from YeldhamDev/filesys_fixes
Fix general issues with filesystem-related UI components in the editor
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/file_dialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index 5599c64daa..059e59ea21 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -861,7 +861,7 @@ FileDialog::FileDialog() { HBoxContainer *hbc = memnew(HBoxContainer); dir_up = memnew(ToolButton); - dir_up->set_tooltip(RTR("Go to parent folder")); + dir_up->set_tooltip(RTR("Go to parent folder.")); hbc->add_child(dir_up); dir_up->connect("pressed", this, "_go_up"); @@ -871,6 +871,7 @@ FileDialog::FileDialog() { dir->set_h_size_flags(SIZE_EXPAND_FILL); refresh = memnew(ToolButton); + refresh->set_tooltip(RTR("Refresh")); refresh->connect("pressed", this, "_update_file_list"); hbc->add_child(refresh); |