Skip to content

Commit

Permalink
Fix for titlebar style
Browse files Browse the repository at this point in the history
  • Loading branch information
nibbles83 committed Oct 30, 2024
1 parent 883d77f commit 637d5c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function createWindow() {
icon: path.join(__dirname, 'assets/icons/png/512x512.png'),
webPreferences: { webSecurity: false, nodeIntegration: true, contextIsolation: false },
frame: process.platform !== 'win32',
titleBarStyle: process.platform === 'linux' ? 'hidden' : 'default'
titleBarStyle: process.platform === 'linux' ? 'default' : 'hidden'
});


Expand Down

0 comments on commit 637d5c5

Please sign in to comment.