mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 05:54:15 +02:00
[ui] fix -> conflict resolution: still displaying that updates are ignored for a given package after its uninstallation
This commit is contained in:
@@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
- UI
|
||||
- wrongly formatted tooltips
|
||||
- conflict resolution: still displaying that updates are ignored for a given package after its uninstallation
|
||||
|
||||
## [0.9.14] 2021-02-03
|
||||
### Improvements
|
||||
|
||||
@@ -373,11 +373,11 @@ class PackagesTable(QTableWidget):
|
||||
else:
|
||||
tooltip = self.i18n['version.unknown']
|
||||
|
||||
if pkg.model.update and not pkg.model.is_update_ignored():
|
||||
if pkg.model.installed and pkg.model.update and not pkg.model.is_update_ignored():
|
||||
label_version.setProperty('update', 'true')
|
||||
tooltip = pkg.model.get_update_tip() or self.i18n['version.installed_outdated']
|
||||
|
||||
if pkg.model.is_update_ignored():
|
||||
if pkg.model.installed and pkg.model.is_update_ignored():
|
||||
label_version.setProperty('ignored', 'true')
|
||||
tooltip = self.i18n['version.updates_ignored']
|
||||
|
||||
|
||||
Reference in New Issue
Block a user