[view] improvement: increasing the version column display limit to 22%

This commit is contained in:
Vinicius Moreira
2022-05-17 10:41:40 -03:00
parent 0c07ef410c
commit ca5c33e3f8
2 changed files with 2 additions and 2 deletions

View File

@@ -387,7 +387,7 @@ class PackagesTable(QTableWidget):
f"{self.i18n['version.latest']}: {pkg.model.latest_version})"
label_version.setText(f"{label_version.text()} > {pkg.model.latest_version}")
if label_version.sizeHint().width() / self.screen_width > 0.20:
if label_version.sizeHint().width() / self.screen_width > 0.22:
label_version.setText(pkg.model.latest_version)
item.setToolTip(tooltip)