Skip to content

Commit

Permalink
Fix bug w/ help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
cold-logic committed Oct 10, 2016
1 parent 1f97134 commit c5a279f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/menu.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const {app, Menu, BrowserWindow} = require("electron");
const {app, Menu, BrowserWindow, shell} = require("electron");

module.exports = exports = Menu.buildFromTemplate([{
label: "Heos Controller",
Expand Down Expand Up @@ -103,7 +103,7 @@ module.exports = exports = Menu.buildFromTemplate([{
submenu: [{
label: "Documentation",
click: function() {
require("shell").openExternal("https://github.com/cold-logic/heos-controller/wiki");
shell.openExternal("https://github.com/cold-logic/heos-controller/wiki");
}
}]
}]);

0 comments on commit c5a279f

Please sign in to comment.