Corected variable name

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2023-06-28 13:35:42 +03:00
parent c04cee7ff7
commit 5f1074471d
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
13 changed files with 32 additions and 32 deletions

View file

@ -268,8 +268,8 @@ void ResourcePage::updateVersionList()
if (optedOut(version))
continue;
auto release_type = current_pack->versions[i].verison_type.isValid()
? QString(" : %1").arg(current_pack->versions[i].verison_type.toString())
auto release_type = current_pack->versions[i].version_type.isValid()
? QString(" [%1]").arg(current_pack->versions[i].version_type.toString())
: "";
m_ui->versionSelectionBox->addItem(current_pack->versions[i].version, QVariant(i));
}