| 119 | } |
| 120 | |
| 121 | void RandomNoteGenerator::DropdownUpdated(DropdownList* list, int oldVal, double time) |
| 122 | { |
| 123 | if (list == mIntervalSelector) |
| 124 | { |
| 125 | TransportListenerInfo* transportListenerInfo = TheTransport->GetListenerInfo(this); |
| 126 | if (transportListenerInfo != nullptr) |
| 127 | { |
| 128 | transportListenerInfo->mInterval = mInterval; |
| 129 | transportListenerInfo->mOffsetInfo = OffsetInfo(mOffset / TheTransport->CountInStandardMeasure(mInterval), !K(offsetIsInMs)); |
| 130 | } |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | void RandomNoteGenerator::LoadLayout(const ofxJSONElement& moduleInfo) |
| 135 | { |
nothing calls this directly
no test coverage detected