From a078a07ee784e1f9e95ff93e318d0eb35a675b58 Mon Sep 17 00:00:00 2001 From: kefoster951 <42386206+kefoster951@users.noreply.github.com> Date: Fri, 13 May 2022 09:11:00 -0400 Subject: [PATCH] Update main.c --- src/main.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main.c b/src/main.c index 6792aa1..2b9832d 100644 --- a/src/main.c +++ b/src/main.c @@ -138,13 +138,13 @@ int main(int argc, char** argv) //Place the curser on the login field if there is no saved username, if there is, place the curser on the password field uint8_t active_input; - if (login.text == login.end) - { - active_input = LOGIN_INPUT; - } - else{ - active_input = PASSWORD_INPUT; - } + if (config.default_input == LOGIN_INPUT && login.text != login.end){ + active_input = PASSWORD_INPUT; + } + else{ + active_input = config.default_input; + } + // init drawing stuff draw_init(&buf);