| 320 | } |
| 321 | |
| 322 | void PulseSequence::LoadLayout(const ofxJSONElement& moduleInfo) |
| 323 | { |
| 324 | mModuleSaveData.LoadString("target", moduleInfo); |
| 325 | mModuleSaveData.LoadInt("width", moduleInfo, 254, 254, 999999, K(isTextField)); |
| 326 | mModuleSaveData.LoadInt("height", moduleInfo, 58, 58, 999999, K(isTextField)); |
| 327 | |
| 328 | SetUpFromSaveData(); |
| 329 | } |
| 330 | |
| 331 | void PulseSequence::SetUpFromSaveData() |
| 332 | { |
nothing calls this directly
no test coverage detected