Fix icon path

This commit is contained in:
Natsumi
2025-10-09 07:33:28 +13:00
parent 2832539afa
commit bae0fb2e5b
3 changed files with 9 additions and 10 deletions

View File

@@ -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 {