diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2019-03-05 03:55:08 -0300 |
---|---|---|
committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2019-03-05 10:12:06 -0300 |
commit | a292d1fefb22b78b155e8daff739c589f3c94fc1 (patch) | |
tree | a9ccddc079bb55d4ff24f11ddfdca01fc84ebcd6 /scene | |
parent | 45e7306b5adec09746fefda902a5414e5b53fdfa (diff) |
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); |