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:
Damien Elmes 2023-03-19 12:05:53 +10:00
parent 8a4667c505
commit 07217e87e0

View file

@ -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