From 9c4e40505b926dec5dc1cfa25dbbed79f63c682b Mon Sep 17 00:00:00 2001 From: enzo Date: Wed, 13 May 2026 02:38:58 +0200 Subject: [PATCH] fix(summary): enable CVE button when non-fixable CVEs exist - Use cve_total instead of cve_count to determine button disabled state - Allows viewing all CVEs even when none are fixable --- full_updater/ui/summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/full_updater/ui/summary.py b/full_updater/ui/summary.py index e750712..dd48ae9 100644 --- a/full_updater/ui/summary.py +++ b/full_updater/ui/summary.py @@ -105,7 +105,7 @@ class SummaryPanel(Vertical): err_label.update("") btn.disabled = False apt_btn.disabled = apt_count == 0 - cve_btn.disabled = cve_count == 0 + cve_btn.disabled = cve_total == 0 # Forcer le refresh de tous les widgets modifiés apt_btn.refresh()