mirror of
https://github.com/x64dbg/x64dbg.git
synced 2024-11-27 23:00:27 +00:00
Fixed cycling through filtered references without clearing filter.
Allow "Actions -> Go to Next/Previous Reference" to cycle through a filtered reference list. Was previously clearing the filter on the first "Next/Previous" action.
This commit is contained in:
parent
b28e317073
commit
7405acd42d
@ -187,10 +187,14 @@ void ReferenceView::setRowCount(dsint count)
|
||||
|
||||
void ReferenceView::setSingleSelection(int index, bool scroll)
|
||||
{
|
||||
clearFilter();
|
||||
//clearFilter();
|
||||
stdList()->setSingleSelection(index);
|
||||
stdSearchList()->setSingleSelection(index);
|
||||
if(scroll) //TODO: better scrolling
|
||||
{
|
||||
stdList()->setTableOffset(index);
|
||||
stdSearchList()->setTableOffset(index);
|
||||
}
|
||||
}
|
||||
|
||||
void ReferenceView::addCommand(QString title, QString command)
|
||||
|
Loading…
Reference in New Issue
Block a user