Skip to content

Commit

Permalink
UI|Client: Added menu item to open Doomsday Manual
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Nov 17, 2019
1 parent 004039c commit 8ecea77
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doomsday/apps/client/src/ui/widgets/taskbarwidget.cpp
Expand Up @@ -475,6 +475,10 @@ TaskBarWidget::TaskBarWidget() : GuiWidget("taskbar"), d(new Impl(this))

auto *helpMenu = new ui::SubmenuItem(tr("Help"), ui::Left);
helpMenu->items()
<< new ui::ActionItem(tr("Doomsday Manual..."),
new CallbackAction([]() {
ClientApp::app().openInBrowser(QUrl("https://manual.dengine.net/"));
}))
<< new ui::ActionItem(tr("Show Tutorial"), new SignalAction(this, SLOT(showTutorial())));
//<< new ui::VariableToggleItem(tr("Menu Annotations"), App::config("ui.showAnnotations"))

Expand Down

0 comments on commit 8ecea77

Please sign in to comment.