Skip to content

Commit

Permalink
Remove help
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverschwendener committed Sep 21, 2018
1 parent 375e03e commit 860882c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/ts/ipc-channels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export class IpcChannels {
public static readonly exitCommandLineTool = "exit-command-line-tool";
public static readonly resetCommandlineOutput = "reset-commandline-output";
public static readonly resetUserInput = "reset-user-input";
public static readonly showHelp = "show-help";
public static readonly showSettings = "show-settings";
public static readonly hideSettings = "hide-settings";
public static readonly updateAppConfig = "update-app-config";
Expand Down
4 changes: 0 additions & 4 deletions src/ts/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,10 +283,6 @@ ipcMain.on(IpcChannels.resetUserInput, (): void => {
mainWindow.webContents.send(IpcChannels.resetUserInput);
});

ipcMain.on(IpcChannels.showHelp, (): void => {
new WebUrlExecutor().execute("https://github.com/oliverschwendener/ueli#ueli");
});

ipcMain.on(IpcChannels.ueliCheckForUpdates, (): void => {
autoUpdater.checkForUpdates();
});
Expand Down
2 changes: 0 additions & 2 deletions src/ts/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ const vue = new Vue({
ipcRenderer.send(IpcChannels.hideWindow);
} else if (event.ctrlKey && event.key === "c") {
ipcRenderer.send(IpcChannels.exitCommandLineTool);
} else if (event.key === "F1") {
ipcRenderer.send(IpcChannels.showHelp);
} else if (event.ctrlKey && event.key === "i") {
toggleSettings();
}
Expand Down

0 comments on commit 860882c

Please sign in to comment.