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.

17 lines
181B

  1. #pragma once
  2. #include "widgets.hpp"
  3. namespace rack {
  4. struct MenuEntry : OpaqueWidget {
  5. MenuEntry() {
  6. box.size = math::Vec(0, BND_WIDGET_HEIGHT);
  7. }
  8. };
  9. } // namespace rack