| 230 | } |
| 231 | |
| 232 | void ScriptScreen::showPickOne(const std::string& prompt, const std::vector<std::string>& items) |
| 233 | { |
| 234 | currentOverlay = std::make_shared<ScriptPickOneOverlay>(*this, prompt, items); |
| 235 | } |
| 236 | |
| 237 | void ScriptScreen::showPickMany(const std::string& prompt, const std::vector<std::string>& items, const std::vector<bool>& preselected) |
| 238 | { |
no outgoing calls
no test coverage detected