Revert "feat: Add start as minimized toggle to settings (#248)" (#310)

the current implementation was prematurely merged and is broken. it will be back with a fixed implementaton eventually
This commit is contained in:
V
2023-12-28 04:25:54 +01:00
committed by GitHub
parent 7565eb39a4
commit 2f35128acf
4 changed files with 8 additions and 15 deletions

View File

@@ -11,11 +11,10 @@ import { ICON_PATH, VIEW_DIR } from "shared/paths";
import { Settings } from "./settings";
export function createSplashWindow(startMinimized = false) {
export function createSplashWindow() {
const splash = new BrowserWindow({
...SplashProps,
icon: ICON_PATH,
show: !startMinimized
icon: ICON_PATH
});
splash.loadFile(join(VIEW_DIR, "splash.html"));