This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Fundamental
mirror of
https://github.com/VCVRack/Fundamental.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
28
Wiki
Activity
Browse Source
Make background of Octave dots same color as LedDisplay background.
tags/v2.0.1
Andrew Belt
3 years ago
parent
19722a2ff9
commit
3cec12bfd3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Octave.cpp
+ 1
- 1
src/Octave.cpp
View File
@@ -89,7 +89,7 @@ struct OctaveButton : Widget {
nvgBeginPath(args.vg);
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);
if (octave == 0) {
Write
Preview
Loading…
Cancel
Save