Update main.c

pull/352/head
kefoster951 2 years ago committed by GitHub
parent 559f2f7370
commit a078a07ee7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save