From 5a085d0dc009a4af5e5854bfaa680f7652139244 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 5 Aug 2023 21:14:30 -0400 Subject: [PATCH] Tweak LedDisplay border color. --- src/app/LedDisplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/LedDisplay.cpp b/src/app/LedDisplay.cpp index bc9bcbf8..3d76a922 100644 --- a/src/app/LedDisplay.cpp +++ b/src/app/LedDisplay.cpp @@ -31,7 +31,7 @@ void LedDisplay::draw(const DrawArgs& args) { nvgBeginPath(args.vg); nvgMoveTo(args.vg, 0.0, box.size.y + 0.5); nvgLineTo(args.vg, box.size.x, box.size.y + 0.5); - nvgStrokeColor(args.vg, nvgRGBAf(1, 1, 1, 0.30)); + nvgStrokeColor(args.vg, nvgRGBAf(1, 1, 1, 0.25)); nvgStrokeWidth(args.vg, 1.0); nvgStroke(args.vg);