enable sync cursor size by default

Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
This commit is contained in:
Victor Seiji Hariki 2022-12-13 10:58:02 -03:00
parent 74041b78a8
commit 8a7e0a08f8

View file

@ -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);