mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
Merge pull request #8297 from Miksel12/bugreport-qt
DolphinQt: Add bug tracker button
This commit is contained in:
commit
e5a4a86f59
@ -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())
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user