Skip to content

Commit

Permalink
Fix Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyepstein committed Nov 11, 2023
1 parent e883ba6 commit 9f89f88
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const createWindow = async () => {
show: false,
width: 600,
height: 400,
icon: getAssetPath('IndigoLogoSmall1.png'),
icon: getAssetPath('icon.ico'),// Set the icon here
// visibleOnAllWorkspaces: true,
// alwaysOnTop: true,
// resizable: false,
Expand Down Expand Up @@ -216,6 +216,9 @@ const registerGlobalShortcut = () => {
app
.whenReady()
.then(() => {
if (app.dock) { // Check if dock is available (macOS)
app.dock.hide();
}
createWindow();
registerGlobalShortcut();
app.on('activate', () => {
Expand Down

0 comments on commit 9f89f88

Please sign in to comment.