File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ let server;
8
8
let mainWindow ;
9
9
let trayIcon ;
10
10
11
+ const WindowProperties = {
12
+ width : 1260 ,
13
+ height : 850 ,
14
+ }
15
+
11
16
const gotTheLock = app . requestSingleInstanceLock ( ) ;
12
17
13
18
function processError ( err ) {
@@ -22,10 +27,10 @@ process.on('uncaughtException', processError);
22
27
23
28
function createWindow ( ) {
24
29
mainWindow = new BrowserWindow ( {
25
- width : 800 ,
26
- height : 600 ,
27
- minHeight : 850 ,
28
- minWidth : 1260 ,
30
+ width : WindowProperties . width ,
31
+ height : WindowProperties . height ,
32
+ minWidth : WindowProperties . width ,
33
+ minHeight : WindowProperties . height ,
29
34
webPreferences : { } ,
30
35
show : false ,
31
36
} ) ;
@@ -172,8 +177,8 @@ function checkForUpdates() {
172
177
</html>
173
178
` ;
174
179
releaseNotesWindow = new BrowserWindow ( {
175
- width : 800 ,
176
- height : 600 ,
180
+ width : 850 ,
181
+ height : 1260 ,
177
182
minHeight : 850 ,
178
183
minWidth : 1260 ,
179
184
webPreferences : {
You can’t perform that action at this time.
0 commit comments