Skip to content
This repository was archived by the owner on Sep 28, 2023. It is now read-only.

Commit 8801d70

Browse files
authored
Reduce minimum window size (#534)
* maximize window when not in dev environnement on startup * remove unused screen import * reduce minimum window size
1 parent fbd7e83 commit 8801d70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/background.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ protocol.registerSchemesAsPrivileged([
5959
async function createWindow () {
6060
// Create the browser window.
6161
win = new BrowserWindow({
62-
minWidth: 1400,
63-
minHeight: 768,
62+
minWidth: 1280,
63+
minHeight: 720,
6464
width: 1400,
6565
height: 768,
6666
title: 'Raven Reader',

0 commit comments

Comments
 (0)