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:
authorTiago Conceição <Tiago_caza@hotmail.com>2021-09-15 08:13:54 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-09-15 08:13:54 +0300
commitfe18398e11dc9916ae5f2907ccd401be06e4bf4e (patch)
tree7e59971e2a5aba6d5248c46d6aa99563f13d9188 /UVtools.WPF/UserSettings.cs
parent90d2f911c19999ac549ffe89e836fa274673bcd7 (diff)
Layout & Overlap resin trap
Diffstat (limited to 'UVtools.WPF/UserSettings.cs')
-rw-r--r--UVtools.WPF/UserSettings.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/UVtools.WPF/UserSettings.cs b/UVtools.WPF/UserSettings.cs
index 12da40c..fc1bb5f 100644
--- a/UVtools.WPF/UserSettings.cs
+++ b/UVtools.WPF/UserSettings.cs
@@ -1216,6 +1216,7 @@ namespace UVtools.WPF
private ushort _removeIslandsBelowEqualPixels = 5;
private ushort _removeIslandsRecursiveIterations = 4;
private ushort _attachIslandsBelowLayers = 2;
+ private byte _resinTrapsOverlapBy = 5;
private byte _closingIterations = 2;
private byte _openingIterations = 0;
@@ -1255,6 +1256,12 @@ namespace UVtools.WPF
set => RaiseAndSetIfChanged(ref _attachIslandsBelowLayers, value);
}
+ public byte ResinTrapsOverlapBy
+ {
+ get => _resinTrapsOverlapBy;
+ set => RaiseAndSetIfChanged(ref _resinTrapsOverlapBy, value);
+ }
+
public byte ClosingIterations
{
get => _closingIterations;