Skip to content
Snippets Groups Projects
Commit c21750bc authored by Thomas Oster's avatar Thomas Oster
Browse files

Fix: FlipY was not saved. Also defaults to true now

parent 504b3b8e
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment