Fix show new indicator default

This commit is contained in:
Ximi1970
2023-08-29 21:13:42 +02:00
parent 9aab507f8e
commit 27c488aaf5
3 changed files with 3 additions and 2 deletions

View File

@@ -924,7 +924,7 @@ SysTrayX.RestoreOptions = {
// Restore show new indicator state
//
setShowNewIndicator: function (result) {
const showNewIndicator = result.showNewIndicator || "true";
const showNewIndicator = result.showNewIndicator || "false";
const checkbox = document.querySelector(`input[name="showNewIndicator"]`);
checkbox.checked = showNewIndicator === "true";