summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Kothmeier <floriankothmeier@web.de>2019-07-29 19:07:56 +0200
committerFlorian Kothmeier <floriankothmeier@web.de>2019-07-29 19:07:56 +0200
commit65101c9a204f6ef6ed05ab60f97518bf56f81127 (patch)
treedc4d0e01a3c1aaa16a0a2f4c9190d708e73484c4
parentd06da7193d9e02c43119e989ab88513b975e28e0 (diff)
Translate TabContainer titles, when inherited from node name
-rw-r--r--scene/gui/tab_container.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/tab_container.cpp b/scene/gui/tab_container.cpp
index 39c76e6646..be8f1cf36e 100644
--- a/scene/gui/tab_container.cpp
+++ b/scene/gui/tab_container.cpp
@@ -303,7 +303,7 @@ void TabContainer::_notification(int p_what) {
// Draw the tab contents.
Control *control = Object::cast_to<Control>(tabs[i + first_tab_cache]);
- String text = control->has_meta("_tab_name") ? String(tr(String(control->get_meta("_tab_name")))) : String(control->get_name());
+ String text = control->has_meta("_tab_name") ? String(tr(String(control->get_meta("_tab_name")))) : String(tr(control->get_name()));
int x_content = tab_rect.position.x + tab_style->get_margin(MARGIN_LEFT);
int top_margin = tab_style->get_margin(MARGIN_TOP);