From 8a7e0a08f805bbf073250f66a24f5bc4c5ddd343 Mon Sep 17 00:00:00 2001 From: Victor Seiji Hariki Date: Tue, 13 Dec 2022 10:58:02 -0300 Subject: [PATCH] enable sync cursor size by default Signed-off-by: Victor Seiji Hariki --- js/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/index.js b/js/index.js index 244f18f..b0b3c2b 100644 --- a/js/index.js +++ b/js/index.js @@ -893,6 +893,11 @@ function loadSettings() { ? false : localStorage.getItem("enable_hr") ); + var _sync_cursor_size = Boolean( + localStorage.getItem("sync_cursor_size") == (null || "true") + ? false + : localStorage.getItem("sync_cursor_size") + ); // set the values into the UI document.getElementById("maskBlur").value = Number(_mask_blur);