| 137 | } |
| 138 | |
| 139 | bool VST3Editor::ValidateUI() |
| 140 | { |
| 141 | mAccess.ModifySettings([&](EffectSettings &settings){ |
| 142 | if (mDuration != nullptr) |
| 143 | settings.extra.SetDuration(mDuration->GetValue()); |
| 144 | mWrapper.FlushParameters(settings); |
| 145 | mWrapper.StoreSettings(settings); |
| 146 | return nullptr; |
| 147 | }); |
| 148 | |
| 149 | return true; |
| 150 | } |
| 151 | |
| 152 | void VST3Editor::OnClose() |
| 153 | { |
nothing calls this directly
no test coverage detected