Skip to content

Commit

Permalink
fix(desktop-app): missing window frame
Browse files Browse the repository at this point in the history
  • Loading branch information
Alia5 authored Oct 10, 2024
1 parent abfc292 commit 3e26aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/firecamp-electron/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const appUpdater = new AppUpdater();
const createWindow = () => {
const { width, height } = screen.getPrimaryDisplay().workAreaSize;
const win = new BrowserWindow({
frame: false,
frame: true,
width,
height,
icon: nativeImage.createFromPath(appIcon),
Expand Down

0 comments on commit 3e26aad

Please sign in to comment.