mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Fix icon path
This commit is contained in:
@@ -532,12 +532,12 @@ function createTray() {
|
||||
let tray = null;
|
||||
if (process.platform === 'darwin') {
|
||||
const image = nativeImage.createFromPath(
|
||||
path.join(rootDir, 'images/VRCX.ico')
|
||||
path.join(rootDir, 'images/VRCX.png')
|
||||
);
|
||||
tray = new Tray(image.resize({ width: 16, height: 16 }));
|
||||
} else if (process.platform === 'linux') {
|
||||
const image = nativeImage.createFromPath(
|
||||
path.join(rootDir, 'images/VRCX.ico')
|
||||
path.join(rootDir, 'images/VRCX.png')
|
||||
);
|
||||
tray = new Tray(image.resize({ width: 64, height: 64 }));
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user