Update SettingsWindow.cpp

This commit is contained in:
DavidXanatos 2023-08-06 21:53:11 +02:00
parent db5fcd4194
commit b5dedbfd58
1 changed files with 1 additions and 1 deletions

View File

@ -1560,7 +1560,7 @@ void CSettingsWindow::OnLoadAddon()
QString Info = pAddon->GetLocalizedEntry("description");
QString infoUrl = pAddon->Data["infoUrl"].toString();
if (!infoUrl.isEmpty()) Info += "<a href=\"" + infoUrl + "\">" + tr(" (info website)") + "</a>";
if (!infoUrl.isEmpty()) Info += " <a href=\"" + infoUrl + "\">" + tr("(info website)") + "</a>";
QLabel* pLabel = new QLabel(Info);
//pLabel->setToolTip(tr("by %1").arg(pAddon->Data["maintainer"].toString()));
connect(pLabel, SIGNAL(linkActivated(const QString&)), theGUI, SLOT(OpenUrl(const QString&)));