Skip to content

Commit

Permalink
Add a menu item to the acknowldgements page (#142)
Browse files Browse the repository at this point in the history
Ahead of 1.0
  • Loading branch information
baconpaul authored Jan 19, 2025
1 parent 20eeb5b commit 5675775
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/ui/six-sines-editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,12 @@ void SixSinesEditor::showPresetPopup()
});
p.addItem("Get the Source", []()
{ juce::URL("https://github.com/baconpaul/six-sines/").launchInDefaultBrowser(); });

p.addItem("Acknowledgements",
[]()
{
juce::URL("https://github.com/baconpaul/six-sines/blob/main/doc/ack.md")
.launchInDefaultBrowser();
});
p.showMenuAsync(juce::PopupMenu::Options().withParentComponent(this));
}

Expand Down

0 comments on commit 5675775

Please sign in to comment.