mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-05 09:39:58 +00:00
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, []() {
|
connect(github, &QAction::triggered, this, []() {
|
||||||
QDesktopServices::openUrl(QUrl(QStringLiteral("https://github.com/dolphin-emu/dolphin")));
|
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())
|
if (AutoUpdateChecker::SystemSupportsAutoUpdates())
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user