disableShowingAnimatedImagesのデフォルト値をprefers-reduced-motionにする
Resolve #9821 Related to #6501
This commit is contained in:
parent
6501f80fc7
commit
9843c596d8
|
@ -168,7 +168,7 @@ export const defaultStore = markRaw(new Storage('base', {
|
|||
},
|
||||
disableShowingAnimatedImages: {
|
||||
where: 'device',
|
||||
default: false,
|
||||
default: matchMedia('(prefers-reduced-motion)').matches,
|
||||
},
|
||||
emojiStyle: {
|
||||
where: 'device',
|
||||
|
|
Loading…
Reference in New Issue