diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2024-01-23 18:29:45 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2024-02-15 16:51:19 -0300 |
commit | 7b42c245509d1b4c325ff073cb9ef2011000dea7 (patch) | |
tree | 884d96d9e6aa4e7347f5e6616408e9a79d49954c /scene/gui/control.h | |
parent | 6f805dee2a0d9d23a8365de0331479c8846bf298 (diff) | |
download | redot-engine-7b42c245509d1b4c325ff073cb9ef2011000dea7.tar.gz |
Make auto translation inheritable
Diffstat (limited to 'scene/gui/control.h')
-rw-r--r-- | scene/gui/control.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scene/gui/control.h b/scene/gui/control.h index e0bd624edf..8bcd955457 100644 --- a/scene/gui/control.h +++ b/scene/gui/control.h @@ -253,7 +253,6 @@ private: bool is_rtl_dirty = true; bool is_rtl = false; - bool auto_translate = true; bool localize_numeral_system = true; // Extra properties. @@ -624,11 +623,10 @@ public: void set_localize_numeral_system(bool p_enable); bool is_localizing_numeral_system() const; +#ifndef DISABLE_DEPRECATED void set_auto_translate(bool p_enable); bool is_auto_translating() const; - _FORCE_INLINE_ String atr(const String p_string) const { - return is_auto_translating() ? tr(p_string) : p_string; - }; +#endif // Extra properties. |