From 955136e2fa66b23a3cc5f41f1d9c268521841123 Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Wed, 2 Apr 2025 11:40:48 -0400 Subject: [PATCH] Make legend box lighter (thanks Tay!) --- lib/xmet/spc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xmet/spc.py b/lib/xmet/spc.py index 1d1bc8f..c8dbcd0 100644 --- a/lib/xmet/spc.py +++ b/lib/xmet/spc.py @@ -629,7 +629,7 @@ class SPCOutlookLegend(): cr.set_font_size(self.FONT_SIZE) - cr.set_source_rgba(0.2, 0.2, 0.2, 0.5) + cr.set_source_rgba(0.2, 0.2, 0.2, 0.1) draw_rounded_rect(cr, x, y, self.width, self.height, self.RADIUS) cr.fill()