From 5db94ffc220c4638ca5005c52e14e7597ff0059a Mon Sep 17 00:00:00 2001 From: SapphireAmoeba5 Date: Fri, 13 May 2022 13:23:14 -0300 Subject: [PATCH] Make TAB key loop through U.I elements --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 03b4464..2be733a 100644 --- a/src/main.c +++ b/src/main.c @@ -259,7 +259,7 @@ int main(int argc, char** argv) if (active_input > 2) { - active_input = PASSWORD_INPUT; + active_input = 0; } update = true; break;