1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Merge pull request #113418 from Calinou/inputevent-shortcut-physical-unicode-avoid-nested-parentheses

Avoid nested parentheses in physical/Unicode InputEventKey text conversion
This commit is contained in:
Thaddeus Crews
2025-12-03 11:42:22 -06:00
3 changed files with 18 additions and 18 deletions

View File

@@ -94,7 +94,7 @@ String EventListenerLineEdit::get_event_text(const Ref<InputEvent> &p_event, boo
}
if (text.is_empty()) {
text = "(" + TTR("Unset") + ")";
text = "(" + TTR("unset") + ")";
}
} else {
text = p_event->as_text();