From 1b1f1a14ccfc307ef6c84c0beb97acc0baba9a77 Mon Sep 17 00:00:00 2001 From: openshwprojects Date: Sun, 26 Feb 2023 23:32:01 +0100 Subject: [PATCH] anroid browser color picker fix --- src/httpserver/http_fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/httpserver/http_fns.c b/src/httpserver/http_fns.c index f0331bcb2..ee2376a60 100644 --- a/src/httpserver/http_fns.c +++ b/src/httpserver/http_fns.c @@ -741,7 +741,7 @@ int http_fn_index(http_request_t* request) { hprintf255(request, "
", SPECIAL_CHANNEL_BASECOLOR); // onchange would fire only if colour was changed // onblur will fire every time - hprintf255(request, "", inputName, SPECIAL_CHANNEL_BASECOLOR, colorValue); + hprintf255(request, "", inputName, SPECIAL_CHANNEL_BASECOLOR, colorValue); hprintf255(request, "", inputName, SPECIAL_CHANNEL_BASECOLOR); hprintf255(request, "
"); poststr(request, "");