Skip to content

Commit

Permalink
Merge pull request #2556 from zaroth/patch-1
Browse files Browse the repository at this point in the history
Fix incorrect application icon behavior on Linux
  • Loading branch information
davidjgraph authored Jan 17, 2022
2 parents 8dedbe2 + 957c2bf commit 4db23f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/webapp/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ function createWindow (opt = {})
backgroundColor: '#FFF',
width: 1600,
height: 1200,
icon: `${__dirname}/images/drawlogo256.png`,
webViewTag: false,
'web-security': true,
webPreferences: {
Expand Down Expand Up @@ -1903,4 +1904,4 @@ ipcMain.on("rendererReq", async (event, args) =>
{
event.reply('mainResp', {error: true, msg: e.message, e: e, reqId: args.reqId});
}
});
});

0 comments on commit 4db23f7

Please sign in to comment.