do not update number of points in from math trace when paused

This commit is contained in:
Jan Käberich 2025-02-23 13:20:49 +01:00
parent e47ca98b95
commit 3c7534a35c

View file

@ -455,6 +455,10 @@ bool Trace::resolveMathSourceHashes()
void Trace::updateMathTracePoints()
{
if(paused) {
// do not update when paused
return;
}
if(!mathSourceTraces.size()) {
return;
}