From 3c7534a35c4f70ccd14bb583fb615cbba19d6694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Sun, 23 Feb 2025 13:20:49 +0100 Subject: [PATCH] do not update number of points in from math trace when paused --- Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp b/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp index df0b237..7f82690 100644 --- a/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp +++ b/Software/PC_Application/LibreVNA-GUI/Traces/trace.cpp @@ -455,6 +455,10 @@ bool Trace::resolveMathSourceHashes() void Trace::updateMathTracePoints() { + if(paused) { + // do not update when paused + return; + } if(!mathSourceTraces.size()) { return; }