mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
down with semicolons
This commit is contained in:
parent
4dfcbb6bd6
commit
63f6a53935
1 changed files with 2 additions and 2 deletions
|
@ -21,9 +21,9 @@ const shouldQuit = app.makeSingleInstance((commandLine, workingDirectory) => {
|
|||
// Someone tried to run a second instance, we should focus our window.
|
||||
if (mainWindow) {
|
||||
if (mainWindow.isMinimized()) {
|
||||
mainWindow.restore();
|
||||
mainWindow.restore()
|
||||
}
|
||||
mainWindow.focus();
|
||||
mainWindow.focus()
|
||||
}
|
||||
|
||||
if (commandLine.length > 1) {
|
||||
|
|
Loading…
Reference in a new issue