Skip to content

Commit 62e77b5

Browse files
committed
fix(electron): make default window size fit projector
1 parent fd8a3a9 commit 62e77b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scout-electron/lib/window-manager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ module.exports.create = function() {
2222
};
2323

2424
app.on('ready', function() {
25-
var height = 600;
25+
var height = 700;
2626
if (process.platform === 'win32') {
2727
height += 60;
2828
} else if (process.platform === 'linux') {
2929
height += 30;
3030
}
3131
debug('loading main window', DEFAULT_URL);
3232
main = module.exports.main = new BrowserWindow({
33-
width: 800,
33+
width: 1024,
3434
height: height,
3535
'web-preferences': {
3636
'subpixel-font-scaling': true,

0 commit comments

Comments
 (0)