From a551123bf1ca3f51b160732097ff4cb9f94d3d9f Mon Sep 17 00:00:00 2001 From: Juan Rosario Date: Fri, 14 Apr 2023 09:41:12 -0500 Subject: [PATCH] Fix setLiveTracking call --- src/plugins/GCodeViewer/GCodeViewer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/GCodeViewer/GCodeViewer.vue b/src/plugins/GCodeViewer/GCodeViewer.vue index 8fb37d53f..98f2cfae9 100644 --- a/src/plugins/GCodeViewer/GCodeViewer.vue +++ b/src/plugins/GCodeViewer/GCodeViewer.vue @@ -1111,7 +1111,7 @@ export default { }, 'isJobRunning': function (newValue) { //Need to add a check for paused... - viewer.gcodeProcessor.setliveTracking(newValue); + viewer.gcodeProcessor.setLiveTracking(newValue); if (!newValue) { viewer.gcodeProcessor.doFinalPass(); }