mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #8297 from Miksel12/bugreport-qt
DolphinQt: Add bug tracker button
This commit is contained in:
@ -549,6 +549,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())
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user