Merge pull request #8297 from Miksel12/bugreport-qt

DolphinQt: Add bug tracker button
This commit is contained in:
Connor McLaughlin 2019-08-08 12:27:05 +10:00 committed by GitHub
commit e5a4a86f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -549,6 +549,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())
{