diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-12-28 01:25:33 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-12-28 01:25:33 -0500 |
| commit | 51db1f99f0c4cddc0af224d46d6e5679d18d2a53 (patch) | |
| tree | ddb11e4aef19b1d428c9f71bdc734e59b2e2d25d /src/downloadmanager.cpp | |
| parent | 106ed49baecc60dbdf4844ed684df750e5caf3aa (diff) | |
custom browser command
changed some places that used QDesktopServices to use shell::Open() from uibase instead
Diffstat (limited to 'src/downloadmanager.cpp')
| -rw-r--r-- | src/downloadmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp index c912464d..676b43de 100644 --- a/src/downloadmanager.cpp +++ b/src/downloadmanager.cpp @@ -1109,7 +1109,7 @@ void DownloadManager::visitOnNexus(int index) QString gameName = info->m_FileInfo->gameName; if (modID > 0) { - QDesktopServices::openUrl(QUrl(m_NexusInterface->getModURL(modID, gameName))); + shell::Open(QUrl(m_NexusInterface->getModURL(modID, gameName))); } else { emit showMessage(tr("Nexus ID for this Mod is unknown")); |
