From c221b9456c42f62f0c933e66b7079b203bdd80d3 Mon Sep 17 00:00:00 2001 From: Sandy Noble Date: Tue, 26 Jan 2016 12:54:21 +0000 Subject: [PATCH] Repaired the queue preview --- polargraphcontroller.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polargraphcontroller.pde b/polargraphcontroller.pde index 09beb7e..df7c350 100644 --- a/polargraphcontroller.pde +++ b/polargraphcontroller.pde @@ -1970,8 +1970,8 @@ void previewQueue(boolean forceRebuild) String bLenStr = splitted[2]; PVector endPoint = new PVector(Integer.parseInt(aLenStr)+previewCordOffset, Integer.parseInt(bLenStr)+previewCordOffset); - endPoint = getDisplayMachine().inMM(endPoint); endPoint = getDisplayMachine().asCartesianCoords(endPoint); + endPoint = getDisplayMachine().inMM(endPoint); pv.x = endPoint.x; pv.y = endPoint.y;