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-04-18 02:18:42 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-04-18 02:18:42 +0300
commit6cfedea4cc36200caab87301e0dd121e97ddc8f2 (patch)
tree3325980560fc5bb3fa8befea1b827a2ca945e9ea /UVtools.ScriptSample
parent4dae750e83987fde8b34087d26fc75407e88f55a (diff)
v2.9.1v2.9.1
* **File formats:** * PhotonS: Implement the write/encode method to allow to use this format and fix the thumbnail * VDT: Allow to auto convert the .vdt to the target printer format using the Machine - Notes, using a flag: FILEFORMAT_YourPrinterExtension, for example: FILEFORMAT_CTB * (Fix) Unable to convert files with no thumbnails to other file format that requires thumbnails * **Tools:** * (Add) Re-height: Option to Anti-Aliasing layers * (Fix) Morph and Blur: The combobox was not setting to the selected item when preform a redo operation (Ctrl+Shift+Z) * **GUI:** * (Change) Progress window to be a grid element inside MainWindow, this allow to reuse the graphics and its elements without the need of spawning a Window instance everytime a progress is shown, resulting in better performance and more fluid transaction * (Improvement) Clear issues when generating calibration tests
Diffstat (limited to 'UVtools.ScriptSample')
-rw-r--r--UVtools.ScriptSample/ScriptAutomateWorkflowSample.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/UVtools.ScriptSample/ScriptAutomateWorkflowSample.cs b/UVtools.ScriptSample/ScriptAutomateWorkflowSample.cs
index ea9b5fa..8ec2695 100644
--- a/UVtools.ScriptSample/ScriptAutomateWorkflowSample.cs
+++ b/UVtools.ScriptSample/ScriptAutomateWorkflowSample.cs
@@ -73,7 +73,7 @@ namespace UVtools.ScriptSample
{
OperationMorph morph = new(SlicerFile)
{
- MorphOperation = MorphOp.Erode,
+ MorphOperation = OperationMorph.MorphOperations.Erode,
Iterations = 4,
};
morph.SelectBottomLayers();