This commit is contained in:
Klaus Basan
2019-01-30 12:28:39 +01:00
committed by Mat Sutcliffe
parent d1822b6829
commit 17f67d6106
6 changed files with 12 additions and 12 deletions

View File

@@ -237,11 +237,11 @@ namespace BlackGui
if (container.size() > asyncThreshold && sort)
{
// larger container with sorting
updateAsync(container, sort);
this->updateAsync(container, sort);
}
else
{
update(container, sort);
this->update(container, sort);
}
}