Skip to content

Commit 31c0bab

Browse files
authored
fix: idle icon not visible on macos when full screen (#1235)
1 parent d3a4b17 commit 31c0bab

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed
File renamed without changes.
File renamed without changes.

main.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ const path = require('node:path');
77
// TODO: Remove @electron/remote use - see #650
88
require('@electron/remote/main').initialize();
99

10-
const idleIcon = path.join(__dirname, 'assets', 'images', 'tray-idle.png');
10+
const idleIcon = path.join(
11+
__dirname,
12+
'assets',
13+
'images',
14+
'tray-idleTemplate.png',
15+
);
1116
const activeIcon = path.join(__dirname, 'assets', 'images', 'tray-active.png');
1217

1318
const browserWindowOpts = {

0 commit comments

Comments
 (0)