Browse Source

Make background of Octave dots same color as LedDisplay background.

tags/v2.0.1
Andrew Belt 3 years ago
parent
commit
3cec12bfd3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Octave.cpp

+ 1
- 1
src/Octave.cpp View File

@@ -89,7 +89,7 @@ struct OctaveButton : Widget {


nvgBeginPath(args.vg); nvgBeginPath(args.vg);
nvgCircle(args.vg, c.x, c.y, mm2px(3.0 / 2)); nvgCircle(args.vg, c.x, c.y, mm2px(3.0 / 2));
nvgFillColor(args.vg, color::BLACK);
nvgFillColor(args.vg, nvgRGB(0x12, 0x12, 0x12));
nvgFill(args.vg); nvgFill(args.vg);


if (octave == 0) { if (octave == 0) {


Loading…
Cancel
Save