mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Turn reduce motion on by default
Until we can get to the bottom of https://github.com/ankitects/anki/issues/2411, this should stop some users encountering a missing bar on upgrade.
This commit is contained in:
parent
8a4667c505
commit
07217e87e0
1 changed files with 1 additions and 1 deletions
|
@ -518,7 +518,7 @@ create table if not exists profiles
|
|||
self.meta["uiScale"] = scale
|
||||
|
||||
def reduce_motion(self) -> bool:
|
||||
return self.meta.get("reduce_motion", False)
|
||||
return self.meta.get("reduce_motion", True)
|
||||
|
||||
def set_reduce_motion(self, on: bool) -> None:
|
||||
self.meta["reduce_motion"] = on
|
||||
|
|
Loading…
Reference in a new issue