From c21750bc02f11e2966387e1a4722939accf96c2c Mon Sep 17 00:00:00 2001 From: Thomas Oster <thomas.oster@rwth-aachen.de> Date: Sat, 25 Aug 2012 23:09:55 +0200 Subject: [PATCH] Fix: FlipY was not saved. Also defaults to true now --- src/com/t_oster/liblasercut/drivers/LaosCutter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/t_oster/liblasercut/drivers/LaosCutter.java b/src/com/t_oster/liblasercut/drivers/LaosCutter.java index 5e82e86..911a689 100644 --- a/src/com/t_oster/liblasercut/drivers/LaosCutter.java +++ b/src/com/t_oster/liblasercut/drivers/LaosCutter.java @@ -172,7 +172,7 @@ public class LaosCutter extends LaserCutter this.flipXaxis = flipXaxis; } - protected boolean flipYaxis = false; + protected boolean flipYaxis = true; /** * Get the value of flipYaxis @@ -934,7 +934,7 @@ public class LaosCutter extends LaserCutter clone.bedHeight = bedHeight; clone.bedWidth = bedWidth; clone.flipXaxis = flipXaxis; - clone.flipXaxis = flipYaxis; + clone.flipYaxis = flipYaxis; clone.mmPerStep = mmPerStep; clone.useTftp = useTftp; clone.addSpacePerRasterLine = addSpacePerRasterLine; -- GitLab