Merge pull request #4726 from matrix-org/joriks/font-scaling-unit-change

Load correct default font size
This commit is contained in:
Jorik Schellekens 2020-06-08 14:48:24 +01:00 committed by GitHub
commit fe0ae07b84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ export class FontWatcher implements IWatcher {
}
public start() {
this.setRootFontSize(SettingsStore.getValue("baseFontSize") + FontWatcher.SIZE_DIFF);
this.setRootFontSize(SettingsStore.getValue("baseFontSize"));
this.dispatcherRef = dis.register(this.onAction);
}