mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
Set editor size to 1.6 on Windows as well (#1853)
This commit is contained in:
parent
96d9539b9d
commit
6043d2f5a2
1 changed files with 1 additions and 2 deletions
|
@ -40,7 +40,6 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
import Absolute from "../components/Absolute.svelte";
|
||||
import Badge from "../components/Badge.svelte";
|
||||
import { bridgeCommand } from "../lib/bridgecommand";
|
||||
import { isApplePlatform } from "../lib/platform";
|
||||
import { ChangeTimer } from "./change-timer";
|
||||
import DecoratedElements from "./DecoratedElements.svelte";
|
||||
import { clearableArray } from "./destroyable";
|
||||
|
@ -70,7 +69,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
return fontFamily;
|
||||
}
|
||||
|
||||
const size = isApplePlatform() ? 1.6 : 1.8;
|
||||
const size = 1.6;
|
||||
const wrap = true;
|
||||
|
||||
const fieldStores: Writable<string>[] = [];
|
||||
|
|
Loading…
Reference in a new issue