diff options
| author | Tannin <devnull@localhost> | 2014-01-13 19:32:54 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2014-01-13 19:32:54 +0100 |
| commit | a083a2d3b6506ab95d3b18ab0ffa7751750e0249 (patch) | |
| tree | 1bb333c8c8b1df4889f65dc383c25e37c6046289 /src/modinfodialog.cpp | |
| parent | db09b806b9e765b5cb49a9a80f74a4440fff3027 (diff) | |
- implemented hook for NtQueryDirectoryFile
- saves list is now automatically updated on FS changes
- optimization: data tree widget is no longer filled completely at once but one directory at a time
- bugfix: pending downloads were not removed from list after a failed nxm request
- bugfix: there was still a nmm.nexusmods.com link
- bugfix: the text "alpha" in version strings wasn't interpreted correctly
Diffstat (limited to 'src/modinfodialog.cpp')
| -rw-r--r-- | src/modinfodialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp index 674e7165..7f221bdc 100644 --- a/src/modinfodialog.cpp +++ b/src/modinfodialog.cpp @@ -766,7 +766,7 @@ void ModInfoDialog::activateNexusTab() QLineEdit *modIDEdit = findChild<QLineEdit*>("modIDEdit"); int modID = modIDEdit->text().toInt(); if (modID != 0) { - QString nexusLink = QString("%1/downloads/file.php?id=%2").arg(ToQString(GameInfo::instance().getNexusPage())).arg(modID); + QString nexusLink = QString("%1/downloads/file.php?id=%2").arg(ToQString(GameInfo::instance().getNexusPage(false))).arg(modID); QLabel *visitNexusLabel = findChild<QLabel*>("visitNexusLabel"); visitNexusLabel->setText(tr("<a href=\"%1\">Visit on Nexus</a>").arg(nexusLink)); visitNexusLabel->setToolTip(nexusLink); |
