mirror of https://github.com/fairyglade/ly.git
Update main.c
changed how the curser placement works to be based on if there is a saved username or not
This commit is contained in:
parent
7d06711a40
commit
b74d841941
10
src/main.c
10
src/main.c
|
@ -135,8 +135,16 @@ int main(int argc, char** argv)
|
||||||
// init visible elements
|
// init visible elements
|
||||||
struct tb_event event;
|
struct tb_event event;
|
||||||
struct term_buf buf;
|
struct term_buf buf;
|
||||||
uint8_t active_input = config.default_input;
|
|
||||||
|
|
||||||
|
//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;
|
||||||
|
}
|
||||||
|
|
||||||
// init drawing stuff
|
// init drawing stuff
|
||||||
draw_init(&buf);
|
draw_init(&buf);
|
||||||
|
|
Loading…
Reference in New Issue