fix color bugs

This commit is contained in:
MathMan05 2025-04-09 15:49:43 -05:00
parent 0182f1b28c
commit 01e267846e

View file

@ -1805,10 +1805,11 @@ class Localuser {
accessibility.addCheckboxInput(
I18n.accessibility.roleColors(),
(t) => {
console.log(t);
this.perminfo.user.disableColors = !t;
},
{
initState: !!this.perminfo.user.disableColors,
initState: !this.perminfo.user.disableColors,
},
);
const gifSettings = ["hover", "always", "never"] as const;