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.
|
- #include "app/MomentarySwitch.hpp"
-
-
- namespace rack {
-
-
- void MomentarySwitch::onDragStart(const event::DragStart &e) {
- if (paramQuantity) {
- paramQuantity->setMax();
- }
- }
-
- void MomentarySwitch::onDragEnd(const event::DragEnd &e) {
- if (paramQuantity) {
- paramQuantity->setMin();
- }
- }
-
-
- } // namespace rack
|