Select item and go to next value.
(mouse_event: MouseEvent)
| 122 | |
| 123 | @if_mousedown |
| 124 | def goto_next(mouse_event: MouseEvent) -> None: |
| 125 | "Select item and go to next value." |
| 126 | python_input.selected_option_index = index |
| 127 | option = python_input.selected_option |
| 128 | option.activate_next() |
| 129 | |
| 130 | sel = ",selected" if selected else "" |
| 131 |
nothing calls this directly
no test coverage detected