mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-12 03:22:32 +02:00
v2.13.4
- (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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user