Track zoom factor changes through IPC

This commit is contained in:
Fedor Indutny
2021-09-02 16:29:16 -07:00
committed by GitHub
parent 3e18a8a337
commit 0793aa6b43
5 changed files with 66 additions and 27 deletions

View File

@@ -24,7 +24,7 @@ export type SerializedCertificateType = {
serialized: ArrayBuffer;
};
export type ZoomFactorType = 0.75 | 1 | 1.25 | 1.5 | 2;
export type ZoomFactorType = 0.75 | 1 | 1.25 | 1.5 | 2 | number;
export type ThemeSettingType = 'system' | 'light' | 'dark';