- (Fix) ZCode: lcd.gcode was blank / not generating when converting from any file format
- (Fix) Zcodex: Change MaterialId from `uint` to `string` (#223, #224)
- (Fix) CXDLP: Set the default printer name to `CL-89` when creating new instance, was `null` before
- (Fix) Some tools were unable to pull certain settings from profiles and imported settings:
   - Elephant foot
   - Exposure finder
   - Grayscale
   - Stress tower
   - Tolerance
   - XYZ Accuracy
   - Change resolution
   - Dynamic lifts
- (Change) `Layer repair` icon at Issues tab and `Outline` icon on preview toolbar (#227)
- (Developers) Created `UVtools.AvaloniaControls` project with `AdvancedImageBox` control for AvaloniaUI
This commit is contained in:
Tiago Conceição
2021-06-25 21:43:30 +01:00
parent 57c4825d16
commit 74b6335f64
39 changed files with 427 additions and 223 deletions
+3 -3
View File
@@ -40,7 +40,7 @@ namespace UVtools.Core.GCode
Comment = comment;
}
public void Reset(string command, string arguments, string comment, bool enabled = true)
public void Set(string command, string arguments, string comment, bool enabled = true)
{
Enabled = enabled;
Command = command;
@@ -48,13 +48,13 @@ namespace UVtools.Core.GCode
Comment = comment;
}
public void Reset(string command, string arguments)
public void Set(string command, string arguments)
{
Command = command;
Arguments = arguments;
}
public void Reset(string command)
public void Set(string command)
{
Command = command;
}