diff options
author | Devine Lu Linvega <[email protected]> | 2018-12-03 19:04:46 +1200 |
---|---|---|
committer | Devine Lu Linvega <[email protected]> | 2018-12-03 19:04:46 +1200 |
commit | ed53c00ea21238771bd73370c9f6c4cf64a00124 (patch) | |
tree | 3e4c4ed29b8bf364dec385e57bc38e0edacf5588 /desktop | |
parent | a20fbfea9207c8c290da118af888318b83a7e19f (diff) | |
download | Orca-ed53c00ea21238771bd73370c9f6c4cf64a00124.tar.gz Orca-ed53c00ea21238771bd73370c9f6c4cf64a00124.zip |
Wider default size
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/core/orca.js | 2 | ||||
-rw-r--r-- | desktop/main.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop/core/orca.js b/desktop/core/orca.js index fcc1aa1..ad61a0a 100644 --- a/desktop/core/orca.js +++ b/desktop/core/orca.js @@ -1,7 +1,7 @@ 'use strict' function Orca (library = {}) { - this.w = 57 // Default Width + this.w = 65 // Default Width this.h = 25 // Default Height this.s = '' // String this.f = 0 // Frame diff --git a/desktop/main.js b/desktop/main.js index a37b475..29d7c0c 100644 --- a/desktop/main.js +++ b/desktop/main.js @@ -9,7 +9,7 @@ app.win = null app.on('ready', () => { app.win = new BrowserWindow({ - width: 630, + width: 710, height: 450, minWidth: 320, minHeight: 320, |