mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +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:
commit
825d0fe94a
3 changed files with 18 additions and 18 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue