| 184 | } |
| 185 | |
| 186 | bool VST3Editor::UpdateUI() |
| 187 | { |
| 188 | mAccess.ModifySettings([&](EffectSettings& settings) { |
| 189 | mWrapper.FetchSettings(settings); |
| 190 | return nullptr; |
| 191 | }); |
| 192 | |
| 193 | if (mPlainUI != nullptr) |
| 194 | mPlainUI->ReloadParameters(); |
| 195 | |
| 196 | //Write to main... |
| 197 | mAccess.Flush(); |
| 198 | |
| 199 | return true; |
| 200 | } |
nothing calls this directly
no test coverage detected