mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -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
|
self.meta["uiScale"] = scale
|
||||||
|
|
||||||
def reduce_motion(self) -> bool:
|
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:
|
def set_reduce_motion(self, on: bool) -> None:
|
||||||
self.meta["reduce_motion"] = on
|
self.meta["reduce_motion"] = on
|
||||||
|
|
Loading…
Reference in a new issue