| 86 | } |
| 87 | |
| 88 | CFrameSelection CFrameEditorModel::MakeFullSelection() const { |
| 89 | CSongView *pSongView = view_->GetSongView(); |
| 90 | return { |
| 91 | {0, 0}, |
| 92 | {(int)pSongView->GetSong().GetFrameCount(), (int)pSongView->GetChannelOrder().GetChannelCount()}, |
| 93 | }; |
| 94 | } |
| 95 | |
| 96 | CFrameSelection CFrameEditorModel::GetActiveSelection() const { |
| 97 | return IsSelecting() ? m_selection : MakeFrameSelection(GetCurrentFrame()); |
no test coverage detected