| 101 | } |
| 102 | |
| 103 | void EntryMenu::SwipeRewind() { |
| 104 | const auto old_entry_idx = this->cur_entry_idx; |
| 105 | this->base_entry_idx_x = 0; |
| 106 | this->cur_entry_idx = 0; |
| 107 | |
| 108 | this->NotifyFocusedEntryChanged(old_entry_idx); |
| 109 | } |
| 110 | |
| 111 | pu::sdl2::TextureHandle::Ref EntryMenu::LoadEntryIconTexture(const Entry &entry) { |
| 112 | auto icon_path = entry.control.icon_path; |
no test coverage detected