DolphinQt: Add bug tracker button

This commit is contained in:
Mike Kuijl 2019-08-05 16:51:02 +02:00
parent 24718c1a38
commit 03b20c702d

View File

@ -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())
{