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-18 05:01:35 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-09-18 05:01:35 +0300
commit52fb6b880a6bc267d17bf22c2246ec76ec68ff65 (patch)
tree0494cc55cf9bafe62ce31c4bd71e130ccaba9fc9 /UVtools.WPF/UserSettings.cs
parentfd9e09b704a2487628a11e6511f037f1a2f8279c (diff)
Add configuration to enable/disable colorization of issue tracker map
Diffstat (limited to 'UVtools.WPF/UserSettings.cs')
-rw-r--r--UVtools.WPF/UserSettings.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/UVtools.WPF/UserSettings.cs b/UVtools.WPF/UserSettings.cs
index 338e216..a22c060 100644
--- a/UVtools.WPF/UserSettings.cs
+++ b/UVtools.WPF/UserSettings.cs
@@ -228,6 +228,7 @@ namespace UVtools.WPF
private Color _bothLayerDifferenceColor = new(255, 246, 240, 216);
private bool _showLayerDifference = false;
private bool _layerDifferenceHighlightSimilarityInstead = false;
+ private bool _useIssueColorOnTracker = true;
private Color _islandColor = new(255, 255, 255, 0);
private Color _islandHighlightColor = new(255, 255, 215, 0);
private Color _overhangColor = new(255, 255, 105, 180);
@@ -249,7 +250,7 @@ namespace UVtools.WPF
private bool _autoFlipLayerIfMirrored = true;
private bool _layerZoomToFitOnLoad = true;
private bool _showBackgroudGrid;
-
+
public Color TooltipOverlayBackgroundColor
{
get => _tooltipOverlayBackgroundColor;
@@ -516,6 +517,12 @@ namespace UVtools.WPF
set => RaiseAndSetIfChanged(ref _layerDifferenceHighlightSimilarityInstead, value);
}
+ public bool UseIssueColorOnTracker
+ {
+ get => _useIssueColorOnTracker;
+ set => RaiseAndSetIfChanged(ref _useIssueColorOnTracker, value);
+ }
+
public Color IslandColor
{
get => _islandColor;