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.

24 lines
398B

  1. #pragma once
  2. #include "common.hpp"
  3. #include "widget/FramebufferWidget.hpp"
  4. #include "widget/SvgWidget.hpp"
  5. namespace rack {
  6. namespace app {
  7. /** If you don't add these to your ModuleWidget, they will fall out of the rack... */
  8. struct SvgScrew : widget::FramebufferWidget {
  9. widget::SvgWidget *sw;
  10. SvgScrew();
  11. };
  12. DEPRECATED typedef SvgScrew SVGScrew;
  13. } // namespace app
  14. } // namespace rack