From 4fa5729eaba2e057ef853c8386c3e676141d2c32 Mon Sep 17 00:00:00 2001 From: Stephen Nneji Date: Mon, 6 Oct 2025 17:01:15 +0100 Subject: [PATCH] Fixes live plot issue --- utilities/plotting/useLivePlot.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/plotting/useLivePlot.m b/utilities/plotting/useLivePlot.m index b74d062b6..f025f0ec4 100644 --- a/utilities/plotting/useLivePlot.m +++ b/utilities/plotting/useLivePlot.m @@ -58,7 +58,7 @@ function updatePlot(obj, data) figure(obj.figureId); subplot(1, 2, 1); cla; subplot(1, 2, 2); cla; - obj.callback(data, false); + obj.callback(data); end function closeFigure(obj)