Skip to content

Commit

Permalink
Restore normal titlebar on Linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
tecimovic committed Oct 19, 2024
1 parent c958629 commit b783280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-electron/ui/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function windowCreate(port, args) {
title: args?.filePath == null ? menu.newConfiguration : args?.filePath,
useContentSize: true,
webPreferences: webPreferences,
titleBarStyle: process.platform === 'win32' ? 'default' : 'hidden',
titleBarStyle: process.platform === 'darwin' ? 'hidden' : 'default',
trafficLightPosition: { x: 15, y: 20 },
titleBarOverlay: {
color: '#F4F4F4',
Expand Down

0 comments on commit b783280

Please sign in to comment.