From cbda3e4620b4b7a4c77422cba48a1e95a4423724 Mon Sep 17 00:00:00 2001 From: poco0317 Date: Sat, 1 Dec 2018 20:58:25 -0600 Subject: [PATCH] Decensor username entry having this censored vs passwords being censored can cause confusion and result in you making an account with your pass as your username --- src/ScreenSMOnlineLogin.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ScreenSMOnlineLogin.cpp b/src/ScreenSMOnlineLogin.cpp index 489a620407..0f37ea40b4 100644 --- a/src/ScreenSMOnlineLogin.cpp +++ b/src/ScreenSMOnlineLogin.cpp @@ -158,10 +158,10 @@ ScreenSMOnlineLogin::HandleScreenMessage(const ScreenMessage SM) NULL); } else { sLoginQuestion = "Enter username"; - ScreenTextEntry::Password(SM_UsernameDone, + ScreenTextEntry::TextEntry(SM_UsernameDone, NSMAN->loginResponse + "\n\n" + sLoginQuestion, - NULL); + "", 255); } } } else if (SM == SM_GoToNextScreen) { @@ -197,10 +197,10 @@ ScreenSMOnlineLogin::HandleScreenMessage(const ScreenMessage SM) SM_PasswordDone, sLoginQuestion, NULL); } else { sLoginQuestion = "Enter username"; - ScreenTextEntry::Password(SM_UsernameDone, + ScreenTextEntry::TextEntry(SM_UsernameDone, NSMAN->loginResponse + "\n\n" + sLoginQuestion, - NULL); + "", 255); } } return;