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-08-24 06:36:50 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-08-24 06:36:50 +0300
commit08a3c895dabed8e021205fb1ce425aa05457772d (patch)
treea3767e743437e498f76797c22bfd2de039bef0bd /UVtools.Core/FileFormats/PhotonSFile.cs
parentd250e966c6307400abb974cb06338e18c5c75368 (diff)
v2.20.0v2.20.0
- **File formats:** - (Add) FlashForge SVGX format of FlashDLPrint - (Improvement) Change `DisplayMirror` from `bool` to a `FlipDirection` enumeration, to be able to identify the exact mirror direction - **(Add) PrusaSlicer Printers:** - FlashForge Explorer MAX - FlashForge Focus 8.9 - FlashForge Focus 13.3 - FlashForge Foto 6.0 - FlashForge Foto 8.9 - FlashForge Foto 13.3 - AnyCubic Photon Mono SQ - AnyCubic Photon Ultra - (Add) Pixel arithmetic: Preset "Elephant foot compensation"
Diffstat (limited to 'UVtools.Core/FileFormats/PhotonSFile.cs')
-rw-r--r--UVtools.Core/FileFormats/PhotonSFile.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.Core/FileFormats/PhotonSFile.cs b/UVtools.Core/FileFormats/PhotonSFile.cs
index da588cb..f4492f8 100644
--- a/UVtools.Core/FileFormats/PhotonSFile.cs
+++ b/UVtools.Core/FileFormats/PhotonSFile.cs
@@ -308,9 +308,9 @@ namespace UVtools.Core.FileFormats
set { }
}
- public override bool DisplayMirror
+ public override Enumerations.FlipDirection DisplayMirror
{
- get => true;
+ get => Enumerations.FlipDirection.Horizontally;
set { }
}