Skip to content

Commit bc65f6d

Browse files
authored
Fixes live plot issue (#426)
1 parent a7cd422 commit bc65f6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utilities/plotting/useLivePlot.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function updatePlot(obj, data)
5858
figure(obj.figureId);
5959
subplot(1, 2, 1); cla;
6060
subplot(1, 2, 2); cla;
61-
obj.callback(data, false);
61+
obj.callback(data);
6262
end
6363

6464
function closeFigure(obj)

0 commit comments

Comments
 (0)