fix(desktop): proper icon path

The previous value points to a file that no longer exists in the
release builds. This file also only exists in the flake build.
This commit is contained in:
FliegendeWurst 2025-06-16 08:29:21 +02:00
parent a13e4d5d79
commit c0b746e03f

View File

@ -257,7 +257,7 @@ async function configureWebContents(webContents: WebContents, spellcheckEnabled:
}
function getIcon() {
return path.join(RESOURCE_DIR, "images/app-icons/png/256x256" + (isDev ? "-dev" : "") + ".png");
return path.join(RESOURCE_DIR, "../public/assets/icon.png");
}
async function createSetupWindow() {