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.WPF/Controls/Calibrators/CalibrateGrayscaleControl.axaml.cs')
-rw-r--r--UVtools.WPF/Controls/Calibrators/CalibrateGrayscaleControl.axaml.cs13
1 files changed, 2 insertions, 11 deletions
diff --git a/UVtools.WPF/Controls/Calibrators/CalibrateGrayscaleControl.axaml.cs b/UVtools.WPF/Controls/Calibrators/CalibrateGrayscaleControl.axaml.cs
index b60ce83..ebf1a31 100644
--- a/UVtools.WPF/Controls/Calibrators/CalibrateGrayscaleControl.axaml.cs
+++ b/UVtools.WPF/Controls/Calibrators/CalibrateGrayscaleControl.axaml.cs
@@ -24,17 +24,9 @@ namespace UVtools.WPF.Controls.Calibrators
public CalibrateGrayscaleControl()
{
- this.InitializeComponent();
+ InitializeComponent();
- BaseOperation = new OperationCalibrateGrayscale();
-
- if (App.SlicerFile is not null)
- {
- Operation.LayerHeight = (decimal)App.SlicerFile.LayerHeight;
- Operation.BottomLayers = App.SlicerFile.BottomLayerCount;
- Operation.BottomExposure = (decimal)App.SlicerFile.BottomExposureTime;
- Operation.NormalExposure = (decimal)App.SlicerFile.ExposureTime;
- }
+ BaseOperation = new OperationCalibrateGrayscale(SlicerFile);
_timer = new Timer(20)
{
@@ -55,7 +47,6 @@ namespace UVtools.WPF.Controls.Calibrators
{
case ToolWindow.Callbacks.Init:
case ToolWindow.Callbacks.ProfileLoaded:
- Operation.Resolution = App.SlicerFile.Resolution;
Operation.PropertyChanged += (sender, e) =>
{
_timer.Stop();