1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
diff --git electron.js electron.js
index c640036..10a8999 100755
--- electron.js
+++ electron.js
@@ -185,11 +185,13 @@ appHelper = {
*/
createWindow: function() {
- // Recover window state (width, height, and x&y position)
- this.state = windowStateKeeper('main', {
+ // Set window state (width, height, and x&y position)
+ this.state = {
+ x : 0,
+ y : 0,
width : 1000,
height : 600
- });
+ };
// Create new browser window
win = new BrowserWindow({
@@ -274,11 +276,6 @@ appHelper = {
*/
registerEvents: function() {
- // Save window state (width, height, and x&y position)
- win.on('close', function() {
- this.state.saveState(win);
- }.bind(appHelper));
-
win.on('closed', function() {
win = null;
});
|