From aadaaf87852ac19f042d3137dcee7b4d0979617f Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Wed, 2 Oct 2019 10:32:04 -0400 Subject: [PATCH] manager: Don't hardcode black text color Improves readability on dark theme Resolves: #52 Signed-off-by: Cole Robinson --- virtManager/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtManager/manager.py b/virtManager/manager.py index 83e32ccb7..c40123e49 100644 --- a/virtManager/manager.py +++ b/virtManager/manager.py @@ -593,7 +593,7 @@ class vmmManager(vmmGObjectUI): return markup def _build_conn_color(self, conn): - color = "#000000" + color = None if conn.is_disconnected(): color = "#5b5b5b" return color