Skip to content

Commit

Permalink
fix for dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
cenkalti committed Oct 12, 2020
1 parent ba67c42 commit 0ea52fe
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ if (require('electron-squirrel-startup')) { // eslint-disable-line global-requir
}

declare var __static: string
const iconPath = path.join(__static, 'img', process.platform === 'win32' ? 'tray-icon.ico' : 'tray-icon.png')
// Filename must end in Template.png or dark-mode version won't work! Also include a @2x.png version for retina screens.
const iconPath = path.join(__static, 'img', process.platform === 'win32' ? 'IconTemplate.ico' : 'IconTemplate.png')
const host = '127.0.0.1'
const logPath = log.transports.file.getFile().path
const binPath = path.join(__static, 'bin')
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes

0 comments on commit 0ea52fe

Please sign in to comment.