enable sync cursor size by default
Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com>
This commit is contained in:
parent
74041b78a8
commit
8a7e0a08f8
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue