| 225 | } |
| 226 | |
| 227 | void Scene_Debug::PushUiVarList() { |
| 228 | const bool was_range_list = (GetFrame().uimode == eUiRangeList); |
| 229 | |
| 230 | Push(eUiVarList); |
| 231 | |
| 232 | auto& idx = prev[mode]; |
| 233 | |
| 234 | if (!was_range_list) { |
| 235 | SetupUiRangeList(); |
| 236 | } |
| 237 | |
| 238 | var_window->SetActive(true); |
| 239 | var_window->SetItemIndex(idx.range_page_index); |
| 240 | |
| 241 | UpdateRangeListWindow(); |
| 242 | var_window->Refresh(); |
| 243 | } |
| 244 | |
| 245 | void Scene_Debug::PushUiNumberInput(int init_value, int digits, bool show_operator) { |
| 246 | Push(eUiNumberInput); |
nothing calls this directly
no test coverage detected