Qt: Add link to Discord server in Help menu

This commit is contained in:
Connor McLaughlin
2020-04-07 13:54:20 +10:00
parent 1427e9f097
commit 32dbd173c5
3 changed files with 13 additions and 0 deletions

View File

@ -274,6 +274,11 @@ void MainWindow::onIssueTrackerActionTriggered()
OpenURL(this, "https://github.com/stenzek/duckstation/issues");
}
void MainWindow::onDiscordServerActionTriggered()
{
OpenURL(this, "https://discord.gg/Buktv3t");
}
void MainWindow::onAboutActionTriggered() {}
void MainWindow::onGameListEntrySelected(const GameListEntry* entry)
@ -501,6 +506,7 @@ void MainWindow::connectSignals()
[this]() { doSettings(SettingsDialog::Category::AudioSettings); });
connect(m_ui.actionGitHubRepository, &QAction::triggered, this, &MainWindow::onGitHubRepositoryActionTriggered);
connect(m_ui.actionIssueTracker, &QAction::triggered, this, &MainWindow::onIssueTrackerActionTriggered);
connect(m_ui.actionDiscordServer, &QAction::triggered, this, &MainWindow::onDiscordServerActionTriggered);
connect(m_ui.actionAbout, &QAction::triggered, this, &MainWindow::onAboutActionTriggered);
connect(m_host_interface, &QtHostInterface::errorReported, this, &MainWindow::reportError,