diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2019-04-14 01:37:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-14 01:37:17 -0500 |
| commit | 0f13d9a4c00db48402dd70fcd55084d102582f22 (patch) | |
| tree | 48babd14c3cd73811c1af62cb083e1bcc02c8884 /src/modinfodialog.cpp | |
| parent | b932416249681a6127d2dafa80ea350f5da43833 (diff) | |
| parent | 94cd6f5349239c7afba2aba68a44ab10fe443944 (diff) | |
Merge pull request #691 from jakemaguy/Develop
Added Missing URL for Nexus Info Tab in ModInfoDialog Window
Diffstat (limited to 'src/modinfodialog.cpp')
| -rw-r--r-- | src/modinfodialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp index d733f851..0e41b10e 100644 --- a/src/modinfodialog.cpp +++ b/src/modinfodialog.cpp @@ -857,6 +857,7 @@ void ModInfoDialog::activateNexusTab() QLabel *visitNexusLabel = findChild<QLabel*>("visitNexusLabel"); visitNexusLabel->setText(tr("<a href=\"%1\">Visit on Nexus</a>").arg(nexusLink)); visitNexusLabel->setToolTip(nexusLink); + m_ModInfo->setURL(nexusLink); if (m_ModInfo->getNexusDescription().isEmpty() || QDateTime::currentDateTimeUtc() >= m_ModInfo->getLastNexusQuery().addDays(1)) { refreshNexusData(modID); |
