Skip to content

Commit

Permalink
Fixed issue with maintaining focus when moving the selection up and d…
Browse files Browse the repository at this point in the history
…own on multiple clips
  • Loading branch information
sabrogden committed Jan 6, 2023
1 parent f5c955a commit 8a7360e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions QPasteWnd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6538,6 +6538,10 @@ bool CQPasteWnd::SelectIds(ARRAY &ids)
int row = 0;
bool found = false;
std::vector<CMainTable>::iterator iter = m_listItems.begin();

//sort so .Find works
ids.SortAscending();

while (iter != m_listItems.end())
{
if (ids.Find(iter->m_lID))
Expand Down

0 comments on commit 8a7360e

Please sign in to comment.