diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-01-14 18:53:32 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-01-14 18:53:32 -0600 |
| commit | 9c364c0dffa5dd5a6f2d665c678a23ca48897f93 (patch) | |
| tree | b578f1afce53f577a816b0744d34acc0cfa6dc75 /src | |
| parent | 643d2a772575e735cb20f608ae30173a275b43e4 (diff) | |
Redirect documentation link in help menu to github.io
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index bc0d991d..5330c799 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -744,7 +744,7 @@ void MainWindow::createHelpWidget() connect(helpAction, SIGNAL(triggered()), this, SLOT(helpTriggered()));
buttonMenu->addAction(helpAction);
- QAction *wikiAction = new QAction(tr("Documentation Wiki"), buttonMenu);
+ QAction *wikiAction = new QAction(tr("Documentation"), buttonMenu);
connect(wikiAction, SIGNAL(triggered()), this, SLOT(wikiTriggered()));
buttonMenu->addAction(wikiAction);
@@ -2120,7 +2120,7 @@ void MainWindow::helpTriggered() void MainWindow::wikiTriggered()
{
- QDesktopServices::openUrl(QUrl("http://wiki.step-project.com/Guide:Mod_Organizer"));
+ QDesktopServices::openUrl(QUrl("https://modorganizer2.github.io/"));
}
void MainWindow::discordTriggered()
|
