mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2025-04-04 13:17:29 +00:00
Add singleton instance lock
This commit is contained in:
parent
79cc8dc851
commit
8b2337e565
1 changed files with 10 additions and 1 deletions
11
app/main.ts
11
app/main.ts
|
@ -49,6 +49,14 @@ interface Stats {
|
|||
//import * as bz2 from 'unbzip2-stream';
|
||||
const bz2 = require('unbzip2-stream');
|
||||
|
||||
const gotInstanceLock = app.requestSingleInstanceLock();
|
||||
|
||||
if (!gotInstanceLock) {
|
||||
dialog.showErrorBox('Error', 'Another instance of monerod GUI is running');
|
||||
app.quit();
|
||||
}
|
||||
|
||||
|
||||
let win: BrowserWindow | null = null;
|
||||
let isHidden: boolean = false;
|
||||
let isQuitting: boolean = false;
|
||||
|
@ -108,7 +116,8 @@ function createWindow(): BrowserWindow {
|
|||
nodeIntegration: false,
|
||||
allowRunningInsecureContent: (serve),
|
||||
contextIsolation: true,
|
||||
devTools: !app.isPackaged
|
||||
devTools: !app.isPackaged,
|
||||
sandbox: false
|
||||
},
|
||||
autoHideMenuBar: true,
|
||||
icon: wdwIcon
|
||||
|
|
Loading…
Reference in a new issue