aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/index.ts')
-rw-r--r--src/main/index.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/index.ts b/src/main/index.ts
index f0b23f7..a7bed00 100644
--- a/src/main/index.ts
+++ b/src/main/index.ts
@@ -1,4 +1,4 @@
1import { app, BrowserWindow } from "electron"; 1import { app, BrowserWindow, Menu } from "electron";
2import path from "node:path"; 2import path from "node:path";
3import { getDb, closeDb } from "./db"; 3import { getDb, closeDb } from "./db";
4import { registerIpcHandlers } from "./ipc/handlers"; 4import { registerIpcHandlers } from "./ipc/handlers";
@@ -41,6 +41,8 @@ function createWindow() {
41} 41}
42 42
43app.whenReady().then(() => { 43app.whenReady().then(() => {
44 Menu.setApplicationMenu(null);
45
44 // Initialize database 46 // Initialize database
45 getDb(); 47 getDb();
46 48