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/Tools/ToolRotateControl.axaml.cs')
-rw-r--r--UVtools.WPF/Controls/Tools/ToolRotateControl.axaml.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.WPF/Controls/Tools/ToolRotateControl.axaml.cs b/UVtools.WPF/Controls/Tools/ToolRotateControl.axaml.cs
index 14bcec7..c09b075 100644
--- a/UVtools.WPF/Controls/Tools/ToolRotateControl.axaml.cs
+++ b/UVtools.WPF/Controls/Tools/ToolRotateControl.axaml.cs
@@ -5,12 +5,12 @@ namespace UVtools.WPF.Controls.Tools
{
public class ToolRotateControl : ToolControl
{
- public OperationRotate Operation { get; }
+ public OperationRotate Operation => BaseOperation as OperationRotate;
public ToolRotateControl()
{
InitializeComponent();
- BaseOperation = Operation = new OperationRotate();
+ BaseOperation = new OperationRotate();
}
private void InitializeComponent()