| 506 | } |
| 507 | |
| 508 | void EffectChain::DropdownUpdated(DropdownList* list, int oldVal, double time) |
| 509 | { |
| 510 | if (list == mEffectSpawnList) |
| 511 | { |
| 512 | if (TheSynth->GetTopModalFocusItem() == mEffectSpawnList->GetModalDropdown()) |
| 513 | { |
| 514 | AddEffect(mEffectTypesToSpawn[mSpawnIndex], mEffectTypesToSpawn[mSpawnIndex], K(onTheFly)); |
| 515 | mSpawnIndex = -1; |
| 516 | } |
| 517 | } |
| 518 | } |
| 519 | |
| 520 | std::vector<IUIControl*> EffectChain::ControlsToIgnoreInSaveState() const |
| 521 | { |
nothing calls this directly
no test coverage detected