Browse Source

Tweak LedDisplay border color.

tags/v2.4.0
Andrew Belt 1 year ago
parent
commit
5a085d0dc0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/app/LedDisplay.cpp

+ 1
- 1
src/app/LedDisplay.cpp View File

@@ -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);



Loading…
Cancel
Save