Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/FileFormats/GR1File.cs')
-rw-r--r--UVtools.Core/FileFormats/GR1File.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/UVtools.Core/FileFormats/GR1File.cs b/UVtools.Core/FileFormats/GR1File.cs
index b9b64ec..34993bf 100644
--- a/UVtools.Core/FileFormats/GR1File.cs
+++ b/UVtools.Core/FileFormats/GR1File.cs
@@ -154,10 +154,10 @@ namespace UVtools.Core.FileFormats
public override PrintParameterModifier[] PrintParameterModifiers { get; } =
{
PrintParameterModifier.BottomLayerCount,
- PrintParameterModifier.BottomExposureSeconds,
- PrintParameterModifier.ExposureSeconds,
-
PrintParameterModifier.LightOffDelay,
+ PrintParameterModifier.BottomExposureTime,
+ PrintParameterModifier.ExposureTime,
+
PrintParameterModifier.BottomLiftHeight,
PrintParameterModifier.BottomLiftSpeed,
PrintParameterModifier.LiftHeight,
@@ -268,6 +268,14 @@ namespace UVtools.Core.FileFormats
set => base.BottomLayerCount = SlicerInfoSettings.BottomLayers = value;
}
+ public override float BottomLightOffDelay => SlicerInfoSettings.LightOffDelay;
+
+ public override float LightOffDelay
+ {
+ get => SlicerInfoSettings.LightOffDelay;
+ set => base.LightOffDelay = SlicerInfoSettings.LightOffDelay = (ushort)value;
+ }
+
public override float BottomExposureTime
{
get => SlicerInfoSettings.BottomExposureTime;
@@ -310,14 +318,6 @@ namespace UVtools.Core.FileFormats
set => base.RetractSpeed = SlicerInfoSettings.RetractSpeed = (ushort)value;
}
- public override float BottomLightOffDelay => SlicerInfoSettings.LightOffDelay;
-
- public override float LightOffDelay
- {
- get => SlicerInfoSettings.LightOffDelay;
- set => base.LightOffDelay = SlicerInfoSettings.LightOffDelay = (ushort)value;
- }
-
public override byte BottomLightPWM
{
get => (byte)SlicerInfoSettings.BottomLightPWM;