| 54 | } |
| 55 | |
| 56 | void EntryMenu::SwipeSingleLeft() { |
| 57 | const auto old_entry_idx = this->cur_entry_idx; |
| 58 | this->base_entry_idx_x--; |
| 59 | this->cur_entry_idx -= g_EntryHeightCount; |
| 60 | this->cur_entry_change_started_cb(); |
| 61 | this->NotifyFocusedEntryChanged(old_entry_idx); |
| 62 | } |
| 63 | |
| 64 | void EntryMenu::SwipeSingleRight() { |
| 65 | const auto old_entry_idx = this->cur_entry_idx; |
no test coverage detected