You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
216B

  1. #include "rack.hpp"
  2. namespace rack {
  3. void ChoiceButton::draw(NVGcontext *vg) {
  4. bndChoiceButton(vg, box.pos.x, box.pos.y, box.size.x, box.size.y, BND_CORNER_NONE, state, -1, text.c_str());
  5. }
  6. } // namespace rack