diff --git a/src/browser/atom-application.coffee b/src/browser/atom-application.coffee index 149c6f61c..275eebfe7 100644 --- a/src/browser/atom-application.coffee +++ b/src/browser/atom-application.coffee @@ -139,7 +139,9 @@ class AtomApplication @applicationMenu.showInstallUpdateItem(false) @applicationMenu.showCheckForUpdateItem(true) - autoUpdater.checkForUpdates() + # Check for update after Atom has fully started and the menus are created + setTimeout((-> autoUpdater.checkForUpdates()), 10000) + checkForUpdate: -> autoUpdater.once 'update-available', ->