summaryrefslogtreecommitdiff
path: root/view/kernelcache/ui/symboltable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'view/kernelcache/ui/symboltable.cpp')
-rw-r--r--view/kernelcache/ui/symboltable.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/view/kernelcache/ui/symboltable.cpp b/view/kernelcache/ui/symboltable.cpp
index 5c86b3b4..90d0d18b 100644
--- a/view/kernelcache/ui/symboltable.cpp
+++ b/view/kernelcache/ui/symboltable.cpp
@@ -196,6 +196,10 @@ void SymbolTableView::populateSymbols(BinaryView &view)
{
auto symbols = watcher->result();
m_model->updateSymbols(std::move(symbols));
+
+ // Reapply the current sort after repopulating the model
+ // TODO: The model should use `QSortFilterProxyModel`, but that's a bigger change.
+ setSortingEnabled(true);
}
});
QFuture<SymbolList> future = QtConcurrent::run([controller]() {