Rename hint_tooltip to tooltip_text & setget
`hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too.
This commit is contained in:
parent
4808d01b2b
commit
ef5b9a06a9
85 changed files with 468 additions and 463 deletions
|
|
@ -1111,7 +1111,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:"));
|
||||
|
|
@ -1361,7 +1361,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