Merge pull request #64885 from Mickeon/rename-tooltip-hint
Rename `hint_tooltip` to `tooltip_text` & setter getter
This commit is contained in:
commit
f7f8af232c
85 changed files with 468 additions and 463 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue