mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-21 19:51:27 +00:00
- replaces "BS" and "ED" on the on-screen keyboards with the symbols normally found on the keyboard for these actions.
This commit is contained in:
parent
43c38a2097
commit
78566c0d52
1 changed files with 1 additions and 1 deletions
|
@ -365,7 +365,7 @@ class TextEnterMenu : Menu
|
|||
else if (ch == 8 || ch == 0)
|
||||
{
|
||||
// Draw the backspace and end "characters".
|
||||
String str = ch == 8 ? "BS" : "ED";
|
||||
String str = ch == 8 ? "←" : "↲";
|
||||
screen.DrawText(displayFont, colr,
|
||||
xx + cell_width/2 - displayFont.StringWidth(str)*CleanXfac_1/2,
|
||||
yy + top_padding, str, DTA_CleanNoMove_1, true);
|
||||
|
|
Loading…
Reference in a new issue