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.GUI/Forms/FrmRepairLayers.cs')
-rw-r--r--UVtools.GUI/Forms/FrmRepairLayers.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/UVtools.GUI/Forms/FrmRepairLayers.cs b/UVtools.GUI/Forms/FrmRepairLayers.cs
index b28d280..969bcd3 100644
--- a/UVtools.GUI/Forms/FrmRepairLayers.cs
+++ b/UVtools.GUI/Forms/FrmRepairLayers.cs
@@ -39,6 +39,12 @@ namespace UVtools.GUI.Forms
set => numOpeningIterations.Value = value;
}
+ public byte RemoveIslandsBelowEqualPixels
+ {
+ get => (byte)nmRemoveIslandsBelowEqualPixels.Value;
+ set => nmRemoveIslandsBelowEqualPixels.Value = value;
+ }
+
public bool RepairIslands
{
get => cbRepairIslands.Checked;
@@ -70,6 +76,7 @@ namespace UVtools.GUI.Forms
RepairIslands = Properties.Settings.Default.LayerRepairLayersIslands;
RemoveEmptyLayers = Properties.Settings.Default.LayerRepairRemoveEmptyLayers;
RepairResinTraps = Properties.Settings.Default.LayerRepairResinTraps;
+ nmRemoveIslandsBelowEqualPixels.Value = Properties.Settings.Default.LayerRepairRemoveIslandsBelowEqualPixelsDefault;
numClosingIterations.Select();
nmLayerRangeEnd.Value = Program.SlicerFile.LayerCount-1;