We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbaf99f commit f46212cCopy full SHA for f46212c
src/main/index.ts
@@ -30,11 +30,12 @@ else {
30
31
function createWindow() {
32
const bounds = store.app.get('bounds')
33
+
34
mainWindow = new BrowserWindow({
35
width: 1200,
36
height: 800,
37
...bounds,
- titleBarStyle: 'hidden',
38
+ titleBarStyle: process.platform === 'darwin' ? 'hidden' : 'default',
39
webPreferences: {
40
preload: path.join(__dirname, 'preload.js'),
41
nodeIntegration: true,
0 commit comments