Skip to content

Commit

Permalink
- replaces "BS" and "ED" on the on-screen keyboards with the symbols …
Browse files Browse the repository at this point in the history
…normally found on the keyboard for these actions.
  • Loading branch information
coelckers committed Sep 9, 2021
1 parent 43c38a2 commit 78566c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/engine/ui/menu/textentermenu.zs
Expand Up @@ -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);
Expand Down

0 comments on commit 78566c0

Please sign in to comment.