1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Fix BaseButton's localization for tooltip with shortcut

This commit is contained in:
Zae
2021-12-21 01:08:37 +08:00
parent 71616630e0
commit e957f7aeb0

View File

@@ -356,7 +356,7 @@ String BaseButton::get_tooltip(const Point2 &p_pos) const {
if (shortcut_in_tooltip && shortcut.is_valid() && shortcut->has_valid_event()) {
String text = shortcut->get_name() + " (" + shortcut->get_as_text() + ")";
if (!tooltip.is_empty() && shortcut->get_name().nocasecmp_to(tooltip) != 0) {
text += "\n" + tooltip;
text += "\n" + atr(tooltip);
}
tooltip = text;
}