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-14 04:34:33 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-09-14 04:34:33 +0300
commite6ca8fb17f07c74657ea83bf858e3a3310b17779 (patch)
tree3fa7174a94623f724239871d5b29386b4a1d577c /UVtools.WPF/UserSettings.cs
parentd1a02243a425517bd1341fc3ca792e84ff4b8b6d (diff)
Better defaults
Diffstat (limited to 'UVtools.WPF/UserSettings.cs')
-rw-r--r--UVtools.WPF/UserSettings.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/UVtools.WPF/UserSettings.cs b/UVtools.WPF/UserSettings.cs
index b834deb..9274bd0 100644
--- a/UVtools.WPF/UserSettings.cs
+++ b/UVtools.WPF/UserSettings.cs
@@ -226,9 +226,9 @@ namespace UVtools.WPF
private Color _overhangColor = new(255, 255, 105, 180);
private Color _overhangHighlightColor = new(255, 255, 20, 147);
private Color _resinTrapColor = new(255, 255, 165, 0);
- private Color _resinTrapHighlightColor = new(255, 244, 164, 96);
- private Color _suctionCupColor = new(255, 229, 248, 255);
- private Color _suctionCupHighlightColor = new(255, 189, 237, 255);
+ private Color _resinTrapHighlightColor = new(255, 255, 127, 0);
+ private Color _suctionCupColor = new(255, 180, 235, 255);
+ private Color _suctionCupHighlightColor = new(255, 77, 207, 255);
private Color _touchingBoundsColor = new(255, 255, 0, 0);
private Color _crosshairColor = new(255, 255, 0, 0);
private bool _zoomToFitPrintVolumeBounds = true;
@@ -781,7 +781,7 @@ namespace UVtools.WPF
private byte _resinTrapRequiredAreaToProcessCheck = 17;
private byte _resinTrapRequiredBlackPixelsToDrain = 10;
private byte _resinTrapMaximumPixelBrightnessToDrain = 30;
- private uint _suctionCupRequiredAreaToConsider = 1000;
+ private uint _suctionCupRequiredAreaToConsider = 2000;
private byte _touchingBoundMinimumPixelBrightness = 127;
private byte _touchingBoundMarginLeft = 5;
private byte _touchingBoundMarginTop = 5;