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.Parser/SL1File.cs')
-rw-r--r--UVtools.Parser/SL1File.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/UVtools.Parser/SL1File.cs b/UVtools.Parser/SL1File.cs
index c6f1aba..a647308 100644
--- a/UVtools.Parser/SL1File.cs
+++ b/UVtools.Parser/SL1File.cs
@@ -620,8 +620,8 @@ namespace UVtools.Parser
CostDollars = MaterialCost,
LiftHeight = LookupCustomValue<float>(Keyword_LiftHeight,
defaultFormat.PrintParametersSettings.LiftHeight),
- LiftingSpeed = LookupCustomValue<float>(Keyword_LiftSpeed,
- defaultFormat.PrintParametersSettings.LiftingSpeed),
+ LiftSpeed = LookupCustomValue<float>(Keyword_LiftSpeed,
+ defaultFormat.PrintParametersSettings.LiftSpeed),
LightOffDelay = LookupCustomValue<float>(Keyword_LightOffDelay,
defaultFormat.PrintParametersSettings.LightOffDelay),
RetractSpeed = LookupCustomValue<float>(Keyword_RetractSpeed,
@@ -775,7 +775,7 @@ namespace UVtools.Parser
BottomLightOffDelay = LookupCustomValue<float>(Keyword_BottomLightOffDelay, defaultFormat.HeaderSettings.BottomLightOffDelay),
CostDollars = MaterialCost,
LiftHeight = LookupCustomValue<float>(Keyword_LiftHeight, defaultFormat.HeaderSettings.LiftHeight),
- LiftingSpeed = LookupCustomValue<float>(Keyword_LiftSpeed, defaultFormat.HeaderSettings.LiftingSpeed),
+ LiftSpeed = LookupCustomValue<float>(Keyword_LiftSpeed, defaultFormat.HeaderSettings.LiftSpeed),
RetractSpeed = LookupCustomValue<float>(Keyword_RetractSpeed, defaultFormat.HeaderSettings.RetractSpeed),
VolumeMl = OutputConfigSettings.UsedMaterial,
WeightG = (float)Math.Round(OutputConfigSettings.UsedMaterial * MaterialSettings.MaterialDensity, 2),