diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-01 21:52:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-01 21:52:56 +0200 |
| commit | c596369d7ac9bf77c60817524880860c9fac2ccf (patch) | |
| tree | 67dd3404d6ba634ce40e4b99d4c00b747469a054 /editor/property_editor.cpp | |
| parent | 5ecd61a3150f87a433dd5a7ff49a842b72516640 (diff) | |
| parent | 6059a9b62413da3ae5906784e1f7c6bfe11c546e (diff) | |
Merge pull request #53540 from Calinou/editor-improve-exp-easing-inspector
Improve easing inspector usability
Diffstat (limited to 'editor/property_editor.cpp')
| -rw-r--r-- | editor/property_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp index 4092cc47e3..3906827027 100644 --- a/editor/property_editor.cpp +++ b/editor/property_editor.cpp @@ -445,8 +445,8 @@ bool CustomPropertyEditor::edit(Object *p_owner, const String &p_name, Variant:: type_button->get_popup()->add_item(TTR("Ease Out"), EASING_EASE_OUT); if (hint_text != "attenuation") { type_button->get_popup()->add_item(TTR("Zero"), EASING_ZERO); - type_button->get_popup()->add_item(TTR("Easing In-Out"), EASING_IN_OUT); - type_button->get_popup()->add_item(TTR("Easing Out-In"), EASING_OUT_IN); + type_button->get_popup()->add_item(TTR("Ease In-Out"), EASING_IN_OUT); + type_button->get_popup()->add_item(TTR("Ease Out-In"), EASING_OUT_IN); } type_button->show(); |