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/MainWindow.axaml.cs')
-rw-r--r--UVtools.WPF/MainWindow.axaml.cs18
1 files changed, 15 insertions, 3 deletions
diff --git a/UVtools.WPF/MainWindow.axaml.cs b/UVtools.WPF/MainWindow.axaml.cs
index 84d074a..fd456c1 100644
--- a/UVtools.WPF/MainWindow.axaml.cs
+++ b/UVtools.WPF/MainWindow.axaml.cs
@@ -132,17 +132,25 @@ namespace UVtools.WPF
Source = new Bitmap(App.GetAsset("/Assets/Icons/code-branch-16x16.png"))
}
},
- new()
+ /*new()
{
Tag = new OperationThreshold(),
Icon = new Avalonia.Controls.Image
{
Source = new Bitmap(App.GetAsset("/Assets/Icons/th-16x16.png"))
}
+ },*/
+ new()
+ {
+ Tag = new OperationLayerArithmetic(),
+ Icon = new Avalonia.Controls.Image
+ {
+ Source = new Bitmap(App.GetAsset("/Assets/Icons/square-root-16x16.png"))
+ }
},
new()
{
- Tag = new OperationArithmetic(),
+ Tag = new OperationPixelArithmetic(),
Icon = new Avalonia.Controls.Image
{
Source = new Bitmap(App.GetAsset("/Assets/Icons/square-root-16x16.png"))
@@ -792,6 +800,9 @@ namespace UVtools.WPF
ClearROIAndMask();
+ if(!Settings.Tools.LastUsedSettingsKeepOnCloseFile)
+ OperationSessionManager.Instance.Clear();
+
ResetDataContext();
}
@@ -1550,7 +1561,8 @@ namespace UVtools.WPF
return false;
});
-
+ OperationSessionManager.Instance.Add(baseOperation);
+
IsGUIEnabled = true;
if (result)