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/Operations/OperationCalculator.cs')
-rw-r--r--UVtools.Core/Operations/OperationCalculator.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/UVtools.Core/Operations/OperationCalculator.cs b/UVtools.Core/Operations/OperationCalculator.cs
index 06f0687..b88274c 100644
--- a/UVtools.Core/Operations/OperationCalculator.cs
+++ b/UVtools.Core/Operations/OperationCalculator.cs
@@ -12,6 +12,7 @@ using UVtools.Core.Objects;
namespace UVtools.Core.Operations
{
+ [Serializable]
public class OperationCalculator : Operation
{
public override string Title => "Calculator";
@@ -23,9 +24,11 @@ namespace UVtools.Core.Operations
public override string ProgressAction => null;
- public override Enumerations.LayerRangeSelection LayerRangeSelection => Enumerations.LayerRangeSelection.None;
+ public override Enumerations.LayerRangeSelection StartLayerRangeSelection => Enumerations.LayerRangeSelection.None;
public override bool CanROI => false;
+ public override bool CanHaveProfiles => false;
+
public MillimetersToPixels CalcMillimetersToPixels { get; set; }
public LightOffDelayC CalcLightOffDelay { get; set; }