Skip to content

Commit 3c7534a

Browse files
committedFeb 23, 2025·
do not update number of points in from math trace when paused
1 parent e47ca98 commit 3c7534a

File tree

1 file changed

+4
-0
lines changed
  • Software/PC_Application/LibreVNA-GUI/Traces

1 file changed

+4
-0
lines changed
 

‎Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,10 @@ bool Trace::resolveMathSourceHashes()
455455

456456
void Trace::updateMathTracePoints()
457457
{
458+
if(paused) {
459+
// do not update when paused
460+
return;
461+
}
458462
if(!mathSourceTraces.size()) {
459463
return;
460464
}

0 commit comments

Comments
 (0)
Please sign in to comment.