Skip to content

Commit

Permalink
Add help button to source list type prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Oct 5, 2024
1 parent 4e8a9cb commit 3b3a78e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,20 @@ async function handleHubMessage(window: BrowserWindow, message: NamedMessage) {
})
);
}

menu.append(
new MenuItem({
type: "separator"
})
);
menu.append(
new MenuItem({
label: "Help",
click() {
openSourceListHelp(window, config);
}
})
);
menu.popup({
window: window,
x: coordinates[0],
Expand Down

0 comments on commit 3b3a78e

Please sign in to comment.