Advance to the next tab
(&mut self)
| 421 | |
| 422 | /// Advance to the next tab |
| 423 | fn advance_tab(&mut self) { |
| 424 | if self.current_tab < self.tab_count() - 1 { |
| 425 | self.current_tab += 1; |
| 426 | self.selected_option = 0; |
| 427 | } |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | // ============ Rendering ============ |
no test coverage detected