diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-28 21:12:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 21:12:44 +0200 |
commit | 1ae8b2de38edd3f013226a88490cd3d4f83d2a61 (patch) | |
tree | c8dd1ee45b54b81a9d8b33f6cba7cd3ff02ff282 /scene/gui/control.cpp | |
parent | 0c7a15d777073860603f7f36f0eed731ff745ada (diff) | |
parent | 7119d355eb6dfe18df5d6f505c4216791bfdbd92 (diff) |
Merge pull request #59636 from akien-mga/string-remove-ttr
Diffstat (limited to 'scene/gui/control.cpp')
-rw-r--r-- | scene/gui/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index ee35eee35d..f0d4ec54ee 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -3141,7 +3141,7 @@ TypedArray<String> Control::get_configuration_warnings() const { TypedArray<String> warnings = Node::get_configuration_warnings(); if (data.mouse_filter == MOUSE_FILTER_IGNORE && !data.tooltip.is_empty()) { - warnings.push_back(TTR("The Hint Tooltip won't be displayed as the control's Mouse Filter is set to \"Ignore\". To solve this, set the Mouse Filter to \"Stop\" or \"Pass\".")); + warnings.push_back(RTR("The Hint Tooltip won't be displayed as the control's Mouse Filter is set to \"Ignore\". To solve this, set the Mouse Filter to \"Stop\" or \"Pass\".")); } return warnings; |