| 62 | } |
| 63 | |
| 64 | void EntryMenu::SwipeSingleRight() { |
| 65 | const auto old_entry_idx = this->cur_entry_idx; |
| 66 | this->base_entry_idx_x++; |
| 67 | this->cur_entry_idx += g_EntryHeightCount; |
| 68 | this->cur_entry_change_started_cb(); |
| 69 | this->NotifyFocusedEntryChanged(old_entry_idx); |
| 70 | } |
| 71 | |
| 72 | void EntryMenu::SwipeToPreviousPage() { |
| 73 | const auto old_entry_idx = this->cur_entry_idx; |
no test coverage detected