fix: the defaultThemesRessourcesPath variable was aiming to and old path, causing warn at every launch

This commit is contained in:
MasterAcnolo
2026-08-15 17:27:08 +02:00
parent 5b13f5d3e0
commit 398de8113d

View File

@@ -150,7 +150,7 @@ const binaryPaths = {
* - user themes are persisted in userData to survive updates * - user themes are persisted in userData to survive updates
*/ */
const userThemesPath = path.join(app.getPath("userData"), "themes"); const userThemesPath = path.join(app.getPath("userData"), "themes");
const defaultThemesSourcePath = path.join(resourcesPath, "theme"); const defaultThemesSourcePath = path.join("theme");
/** /**
* Initializes user theme directory and ensures default themes exist. * Initializes user theme directory and ensures default themes exist.