Remove duplicate showWindow method (#1918)

This commit is contained in:
Scott Nonnenberg 2018-01-03 18:18:13 -08:00 committed by GitHub
parent 2bd27941c0
commit deb9bab086
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 6 deletions

10
main.js
View File

@ -41,6 +41,10 @@ const config = require("./app/config");
const userConfig = require('./app/user_config');
function showWindow() {
if (!mainWindow) {
return;
}
// Using focus() instead of show() seems to be important on Windows when our window
// has been docked using Aero Snap/Snap Assist. A full .show() call here will cause
// the window to reposition:
@ -310,12 +314,6 @@ function showDebugLog() {
}
}
function showWindow() {
if (mainWindow) {
mainWindow.show();
}
};
function openReleaseNotes() {
shell.openExternal('https://github.com/WhisperSystems/Signal-Desktop/releases/tag/v' + app.getVersion());
}