diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-24 13:57:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-24 13:57:13 +0200 |
commit | 27d12092821df77a6186d2fd54055c54beefbea0 (patch) | |
tree | 7e4ead88863ce96e81ccae3cccc7c6463332daab /editor/create_dialog.cpp | |
parent | 513b39882ae44a5ee0ff0d9bb0c4ddf700449422 (diff) | |
parent | 5643d2e3feb61f07c4859866889f1d4a2edd00c8 (diff) |
Merge pull request #38088 from YeldhamDev/name_tooltips_tweaks
Small naming and tooltip tweaks
Diffstat (limited to 'editor/create_dialog.cpp')
-rw-r--r-- | editor/create_dialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp index c0c3a73957..1e3dc01112 100644 --- a/editor/create_dialog.cpp +++ b/editor/create_dialog.cpp @@ -707,6 +707,7 @@ CreateDialog::CreateDialog() { favorite = memnew(Button); favorite->set_flat(true); favorite->set_toggle_mode(true); + favorite->set_tooltip(TTR("(Un)favorite selected item.")); favorite->connect("pressed", callable_mp(this, &CreateDialog::_favorite_toggled)); search_hb->add_child(favorite); vbc->add_margin_child(TTR("Search:"), search_hb); |