Commit 65ce43c530961dac5a312bda0a2f882c2b075ac7
Fix window frame regression
Christian Bundy committed on 5/3/2018, 2:46:58 PMParent: abdfdab7259f8f8c62221e7d3e23947e30cb29ed
Files changed
lib/window.js | changed |
lib/window.js | ||
---|---|---|
@@ -3,9 +3,10 @@ | ||
3 | 3 | var extend = require('xtend/mutable') |
4 | 4 | |
5 | 5 | module.exports = function Window (config, path, opts) { |
6 | 6 | var window = new electron.BrowserWindow(extend({ |
7 | - show: false | |
7 | + show: false, | |
8 | + titleBarStyle: 'hidden', | |
8 | 9 | }, opts)) |
9 | 10 | |
10 | 11 | electron.ipcMain.on('ready-to-show', handleReadyToShow) |
11 | 12 |
Built with git-ssb-web