remove theme max num chekc to allow adding themes purely by front-end

http-comm
Ondřej Hruška 7 years ago
parent 079b522540
commit 781cf8825b
  1. 2
      user/cgi_term_cfg.c

@ -173,7 +173,7 @@ cgiTermCfgSetParams(HttpdConnData *connData)
if (GET_ARG("theme")) {
cgi_dbg("Screen color theme: %s", buff);
n = atoi(buff);
if (n >= 0 && n <= 5) { // ALWAYS ADJUST WHEN ADDING NEW THEME!
if (n >= 0) {
termconf->theme = (u8) n;
// this can't be notified, page must reload.
} else {

Loading…
Cancel
Save