Skip to content
Snippets Groups Projects
Commit 4237cc43 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Display the system password prompt in the Wizard with no border

parent 4e4216d9
No related branches found
No related tags found
No related merge requests found
......@@ -317,7 +317,7 @@ void cfg_wizard(void)
);
char pass[sizeof(cfg.sys_pass)];
do {
if(uifc.input(WIN_L2R|WIN_SAV, 0, 14, "SY", pass, sizeof(cfg.sys_pass)-1, K_PASSWORD | K_UPPER) < 0)
if(uifc.input(WIN_L2R|WIN_SAV|WIN_NOBRDR, 0, 14, "SY", pass, sizeof(cfg.sys_pass)-1, K_PASSWORD | K_UPPER) < 0)
break;
} while(strcmp(cfg.sys_pass, pass) != 0);
if(strcmp(cfg.sys_pass, pass)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment