mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 02:03:08 +02:00
disableShowingAnimatedImagesのデフォルト値をprefers-reduced-motionにする
Resolve #9821 Related to #6501
This commit is contained in:
parent
6501f80fc7
commit
9843c596d8
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue