diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-30 19:21:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 19:21:28 +0200 |
commit | 1f6a81ceeac80ce95b5f686756c557b1be19a8b8 (patch) | |
tree | b6ff0275c1b213cc439c4f604d82e1613eda5497 /scene | |
parent | c27ef1565ff44eaacc081081b6b21b23665fbe10 (diff) | |
parent | b70b9c4edeb3c174ce0fcb71bc3a0ee411552c36 (diff) |
Merge pull request #51073 from YeldhamDev/oops
Fix "Custom *" theme sections being inside "Auto Translate"
Diffstat (limited to 'scene')
-rw-r--r-- | scene/gui/control.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 4179c8b246..81fcb96187 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -2872,6 +2872,7 @@ void Control::_bind_methods() { ADD_GROUP("Auto Translate", ""); ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_translate"), "set_auto_translate", "is_auto_translating"); + ADD_GROUP("", ""); BIND_ENUM_CONSTANT(FOCUS_NONE); BIND_ENUM_CONSTANT(FOCUS_CLICK); |