From 820deb295539520faccd77efb9beca3ce5ebb44e Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 11 Jun 2026 10:52:49 +0900 Subject: [PATCH] fix: incorrect error state --- dzgui/views/dialogs/boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dzgui/views/dialogs/boot.py b/dzgui/views/dialogs/boot.py index 591bea2..ab90d1a 100644 --- a/dzgui/views/dialogs/boot.py +++ b/dzgui/views/dialogs/boot.py @@ -225,7 +225,7 @@ class BootDialog(Gtk.Dialog): return if state == dialogs.ok: cell.set_property(prop, HEX_GREEN) - elif state == dialogs.running: + elif state == dialogs.failed: cell.set_property(prop, HEX_RED) else: cell.set_property(prop, None)