Skip to content
Snippets Groups Projects
Commit 9843c596 authored by tamaina's avatar tamaina
Browse files

disableShowingAnimatedImagesのデフォルト値をprefers-reduced-motionにする

Resolve #9821
Related to #6501
parent 6501f80f
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ export const defaultStore = markRaw(new Storage('base', { ...@@ -168,7 +168,7 @@ export const defaultStore = markRaw(new Storage('base', {
}, },
disableShowingAnimatedImages: { disableShowingAnimatedImages: {
where: 'device', where: 'device',
default: false, default: matchMedia('(prefers-reduced-motion)').matches,
}, },
emojiStyle: { emojiStyle: {
where: 'device', where: 'device',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment