DolphinQt: Add bug tracker button
This commit is contained in:
parent
24718c1a38
commit
03b20c702d
|
@ -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())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue