Merge pull request #64885 from Mickeon/rename-tooltip-hint

Rename `hint_tooltip` to `tooltip_text` & setter getter
This commit is contained in:
Rémi Verschelde 2022-08-28 17:43:01 +02:00 committed by GitHub
commit f7f8af232c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
85 changed files with 468 additions and 463 deletions

View file

@ -1110,7 +1110,7 @@ void EditorPropertyDictionary::update_property() {
if (i < amount) {
String cs = key.get_construct_string();
prop->set_label(key.get_construct_string());
prop->set_tooltip(cs);
prop->set_tooltip_text(cs);
change_index = i + offset;
} else if (i == amount) {
prop->set_label(TTR("New Key:"));
@ -1359,7 +1359,7 @@ void EditorPropertyLocalizableString::update_property() {
String cs = key.get_construct_string();
prop->set_label(cs);
prop->set_tooltip(cs);
prop->set_tooltip_text(cs);
remove_index = i + offset;
prop->set_selectable(false);