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
commit 825d0fe94a
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
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();