From 7b42c245509d1b4c325ff073cb9ef2011000dea7 Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Tue, 23 Jan 2024 18:29:45 -0300 Subject: Make auto translation inheritable --- scene/gui/control.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'scene/gui/control.h') 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. -- cgit v1.2.3