diff --git a/src/main.ts b/src/main.ts index 911db87..3a604fd 100644 --- a/src/main.ts +++ b/src/main.ts @@ -43,11 +43,10 @@ if (acquiredLock) { // create window and application contexts createMainWindow(); - // enable auto start on Windows and MacOS + // save first launch state if (config.firstLaunch) { - if (process.platform === "win32" || process.platform === "darwin") { - autoLaunch.enable(); - } + // Doesn't do anything right now. Used to enable auto start, but that behaviour was removed. + // Left in case it gets used in the future. config.firstLaunch = false; }