aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index 663f81cc9..37c553840 100644
--- a/src/index.js
+++ b/src/index.js
@@ -115,7 +115,7 @@ const createWindow = () => {
115 mainWindow.loadURL(`file://${__dirname}/index.html`); 115 mainWindow.loadURL(`file://${__dirname}/index.html`);
116 116
117 // Open the DevTools. 117 // Open the DevTools.
118 if (isDevMode) { 118 if (isDevMode || process.argv.includes('--devtools')) {
119 mainWindow.webContents.openDevTools(); 119 mainWindow.webContents.openDevTools();
120 } 120 }
121 121