mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 03:16:10 +00:00
Optimize seekChanged in FunctionsModel #498
This commit is contained in:
parent
0cea9e3287
commit
49dabaab71
@ -256,8 +256,14 @@ void FunctionModel::setNested(bool nested)
|
||||
|
||||
void FunctionModel::seekChanged(RVA)
|
||||
{
|
||||
int previousIndex = currentIndex;
|
||||
if (updateCurrentIndex()) {
|
||||
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
||||
if (previousIndex >= 0) {
|
||||
emit dataChanged(index(previousIndex, 0), index(previousIndex, columnCount() - 1));
|
||||
}
|
||||
if (currentIndex >= 0) {
|
||||
emit dataChanged(index(currentIndex, 0), index(currentIndex, columnCount() - 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user