| 2238 | } |
| 2239 | |
| 2240 | void CFamiTrackerView::OnKeyTab() |
| 2241 | { |
| 2242 | // Move between channels |
| 2243 | bool bShiftPressed = IsShiftPressed(); |
| 2244 | |
| 2245 | if (bShiftPressed) |
| 2246 | m_pPatternEditor->PreviousChannel(); |
| 2247 | else |
| 2248 | m_pPatternEditor->NextChannel(); |
| 2249 | |
| 2250 | InvalidateCursor(); |
| 2251 | } |
| 2252 | |
| 2253 | void CFamiTrackerView::OnKeyPageUp() |
| 2254 | { |
nothing calls this directly
no test coverage detected