| 172 | } |
| 173 | |
| 174 | void MultitrackRecorder::CheckboxUpdated(Checkbox* checkbox, double time) |
| 175 | { |
| 176 | if (checkbox == mRecordCheckbox) |
| 177 | { |
| 178 | for (auto* track : mTracks) |
| 179 | track->SetRecording(mRecord); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | void MultitrackRecorder::SaveLayout(ofxJSONElement& moduleInfo) |
| 184 | { |
nothing calls this directly
no test coverage detected