From e4c66744ba0f5d03617bef3eaf681955767c1573 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Sun, 18 Jan 2026 23:21:17 +1300 Subject: [PATCH] Disable opening dev tools on launch --- materialious/electron/src/setup.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/materialious/electron/src/setup.ts b/materialious/electron/src/setup.ts index 9edbbe96..e9089d23 100644 --- a/materialious/electron/src/setup.ts +++ b/materialious/electron/src/setup.ts @@ -190,8 +190,6 @@ export class ElectronCapacitorApp { globalShortcut.register('Control+Shift+I', () => { this.MainWindow.webContents.toggleDevTools(); }); - this.MainWindow.webContents.toggleDevTools(); - // Security this.MainWindow.webContents.setWindowOpenHandler((details) => { shell.openExternal(details.url);