Skip to content
Permalink
Browse files
Merge pull request #8297 from Miksel12/bugreport-qt
DolphinQt: Add bug tracker button
  • Loading branch information
stenzek committed Aug 8, 2019
2 parents 1bd8f03 + 03b20c7 commit e5a4a86
Showing 1 changed file with 5 additions and 0 deletions.
@@ -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())
{

0 comments on commit e5a4a86

Please sign in to comment.