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.

15 lines
260B

  1. #include "ui/ChoiceButton.hpp"
  2. namespace rack {
  3. namespace ui {
  4. void ChoiceButton::draw(const DrawArgs &args) {
  5. bndChoiceButton(args.vg, 0.0, 0.0, box.size.x, box.size.y, BND_CORNER_NONE, state, -1, text.c_str());
  6. }
  7. } // namespace ui
  8. } // namespace rack