Set editor size to 1.6 on Windows as well (#1853)

This commit is contained in:
Henrik Giesel 2022-05-10 03:48:11 +02:00 committed by GitHub
parent 96d9539b9d
commit 6043d2f5a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>[] = [];