-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* GRBL-Plotter. Another GCode sender for GRBL. | ||
This file is part of the GRBL-Plotter application. | ||
Copyright (C) 2019-2023 Sven Hasemann contact: [email protected] | ||
Copyright (C) 2019-2024 Sven Hasemann contact: [email protected] | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -54,6 +54,7 @@ You should have received a copy of the GNU General Public License | |
* 2023-08-06 l:830 f:CreateGCode set SortByDistance start-pos to maxy | ||
* 2023-08-16 l:271 f:StartPath f:UpdateGUI pull request Speed up merge and sort #348 | ||
* 2023-09-16 l:774 f:CreateGCode wrong call to RemoveOffset(minx,minx) -> miny | ||
* 2024-01-25 l:1100 f:CreateGCode export graphics dimension, to be able to calculate point-marker-size in 2Dview | ||
*/ | ||
|
||
using System; | ||
|
@@ -1096,6 +1097,7 @@ public static bool CreateGCode()//Final(BackgroundWorker backgroundWorker, DoWor | |
|
||
|
||
VisuGCode.xyzSize.AddDimensionXY(Graphic.actualDimension); | ||
SetHeaderInfo(string.Format(" Dimension XY: {0:0.0} {1:0.0} ", Graphic.actualDimension.dimx, Graphic.actualDimension.dimy)); | ||
|
||
if ((maxObjectCountBeforeReducingXML > 0) && (completeGraphic.Count > maxObjectCountBeforeReducingXML)) | ||
{ | ||
|