From 78566c0d5221e9399a19b731d907b25bc1bcfbfb Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 9 Sep 2021 14:00:00 +0200 Subject: [PATCH] - replaces "BS" and "ED" on the on-screen keyboards with the symbols normally found on the keyboard for these actions. --- wadsrc/static/zscript/engine/ui/menu/textentermenu.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/engine/ui/menu/textentermenu.zs b/wadsrc/static/zscript/engine/ui/menu/textentermenu.zs index 2f179d0d7..6fc7abe02 100644 --- a/wadsrc/static/zscript/engine/ui/menu/textentermenu.zs +++ b/wadsrc/static/zscript/engine/ui/menu/textentermenu.zs @@ -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);