From 03b20c702dd459752db997c1d1ea069550497779 Mon Sep 17 00:00:00 2001 From: Mike Kuijl Date: Mon, 5 Aug 2019 16:51:02 +0200 Subject: [PATCH] DolphinQt: Add bug tracker button --- Source/Core/DolphinQt/MenuBar.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp index f890742f5e..ecc11cc349 100644 --- a/Source/Core/DolphinQt/MenuBar.cpp +++ b/Source/Core/DolphinQt/MenuBar.cpp @@ -550,6 +550,11 @@ void MenuBar::AddHelpMenu() connect(github, &QAction::triggered, this, []() { QDesktopServices::openUrl(QUrl(QStringLiteral("https://github.com/dolphin-emu/dolphin"))); }); + QAction* bugtracker = help_menu->addAction(tr("&Bug Tracker")); + connect(bugtracker, &QAction::triggered, this, []() { + QDesktopServices::openUrl( + QUrl(QStringLiteral("https://bugs.dolphin-emu.org/projects/emulator"))); + }); if (AutoUpdateChecker::SystemSupportsAutoUpdates()) {