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.Core/FileFormats/LGSFile.cs')
-rw-r--r--UVtools.Core/FileFormats/LGSFile.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/UVtools.Core/FileFormats/LGSFile.cs b/UVtools.Core/FileFormats/LGSFile.cs
index a98ccee..c944cb0 100644
--- a/UVtools.Core/FileFormats/LGSFile.cs
+++ b/UVtools.Core/FileFormats/LGSFile.cs
@@ -280,7 +280,12 @@ namespace UVtools.Core.FileFormats
public override uint LayerCount
{
- set => HeaderSettings.LayerCount = LayerCount;
+ set
+ {
+ HeaderSettings.LayerCount = LayerCount;
+ RaisePropertyChanged();
+ RaisePropertyChanged(nameof(NormalLayerCount));
+ }
}
public override ushort BottomLayerCount