Skip to content

Commit

Permalink
Debugger: Prevent flicker when resetting symbol tree node children
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoticgd authored and F0bes committed Sep 15, 2024
1 parent 93b1841 commit 8d3f4fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pcsx2-qt/Debugger/SymbolTree/SymbolTreeModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,9 @@ std::vector<std::unique_ptr<SymbolTreeNode>> SymbolTreeModel::populateChildren(
}
}

for (std::unique_ptr<SymbolTreeNode>& child : children)
child->readFromVM(cpu, database);

return children;
}

Expand Down

0 comments on commit 8d3f4fa

Please sign in to comment.