From 9942df16c8334ff041fb92f432a3a29e351c88df Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Tue, 5 Oct 2021 22:25:59 +0100 Subject: [PATCH] Increase default screen width on desktop app Goal is to show 3 card in a row as default. It gives more consistent look to privacy.sexy across web and desktop. --- src/presentation/electron/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/presentation/electron/main.ts b/src/presentation/electron/main.ts index 330e15b9..7a5b3f29 100644 --- a/src/presentation/electron/main.ts +++ b/src/presentation/electron/main.ts @@ -31,7 +31,7 @@ if (!process.env.IS_TEST) { function createWindow() { // Create the browser window. - const size = getWindowSize(1350, 955); + const size = getWindowSize(1650, 955); win = new BrowserWindow({ width: size.width, height: size.height,