Update settings.js

pull/1886/head
pidajo 2022-05-20 19:40:28 +02:00 committed by GitHub
parent 44d7e883a4
commit 6e0cc5cd9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -28,17 +28,17 @@
value: !!settings.isInvers, // !! converts undefined to false
format: v => v?"Yes":"No",
onchange: v => {
settings.withWidgets = v;
settings.isInvers = v;
writeSettings();
}
},
'On Lock?': {
value: !!settings.isInvers, // !! converts undefined to false
value: !!settings.playLocked, // !! converts undefined to false
format: v => v?"Play":"Pause",
onchange: v => {
settings.withWidgets = v;
settings.playLocked = v;
writeSettings();
}
}
});
})/*(load)/**/
})/*(load)/**/