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.WPF/MainWindow.axaml.cs')
-rw-r--r--UVtools.WPF/MainWindow.axaml.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/UVtools.WPF/MainWindow.axaml.cs b/UVtools.WPF/MainWindow.axaml.cs
index b5f54ea..6531bf2 100644
--- a/UVtools.WPF/MainWindow.axaml.cs
+++ b/UVtools.WPF/MainWindow.axaml.cs
@@ -1807,6 +1807,17 @@ namespace UVtools.WPF
if (e.PropertyName == nameof(SlicerFile.Thumbnails))
{
RefreshThumbnail();
+ return;
+ }
+ if (e.PropertyName == nameof(SlicerFile.Resolution))
+ {
+ RaisePropertyChanged(nameof(LayerResolutionStr));
+ return;
+ }
+ if (e.PropertyName == nameof(SlicerFile.Ppmm))
+ {
+ RaisePropertyChanged(nameof(LayerZoomStr));
+ return;
}
}