Skip to content

Commit

Permalink
[feat] interactive: add community link
Browse files Browse the repository at this point in the history
  • Loading branch information
bgallois committed Jul 29, 2023
1 parent aa220b9 commit 39147e9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 21 deletions.
3 changes: 3 additions & 0 deletions src/interactive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,9 @@ Interactive::Interactive(QWidget *parent) : QMainWindow(parent),
connect(ui->actionAsk, &QAction::triggered, []() {
QDesktopServices::openUrl(QUrl(QStringLiteral("https://github.com/FastTrackOrg/FastTrack/discussions"), QUrl::TolerantMode));
});
connect(ui->actionDiscord, &QAction::triggered, []() {
QDesktopServices::openUrl(QUrl(QStringLiteral("https://discord.gg/qxYMbCwZmf"), QUrl::TolerantMode));
});
connect(ui->actionIssue, &QAction::triggered, []() {
QDesktopServices::openUrl(QUrl(QStringLiteral("https://github.com/FastTrackOrg/FastTrack/issues"), QUrl::TolerantMode));
});
Expand Down
Loading

0 comments on commit 39147e9

Please sign in to comment.