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-02-13 02:53:20 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-02-13 02:53:20 +0300
commit9a147e7909942ab9710386c78f84caa38b8738ca (patch)
treeb492cc22657f3bc6c315f0a7decc3f56a8f07fd0 /UVtools.WPF/UserSettings.cs
parente68ac8e910295f3b4d20f5f09ca56a52f06c23fc (diff)
v2.4.5
* (Add) Setting: Expand and show tool descriptions by default * (Improvement) Drag and drop a file on Main Window while hold SHIFT key will open the file under a new instance * (Improvement) PrusaSlicer & SL1 files: Allow to set custom variables on "Material - Notes" per resin to override the "Printer - Notes" variables This will allow custom settings per resin, for example, if you want a higher 'lift height, lift speed, etc' on more viscous resins. (#141) * (Change) Setting: Windows vertical margin to 60px * (Fix) Export file was getting a "Parameter count mismatch" on some file formats (#140) * (Fix) photon and cbddlp file formats with version 3 to never hash images * (Fix) Windows was not geting the screen bounds from the active monitor * (Fix) Tool windows height, vertical margin and position * **(Fix) Exposure time finder:** * Text label * Set vertical splitter to not show decimals, int value * Set vertical splitter default to 0 * Allow vertical splitter to accept negative values * Optimized the default values * Removed similar letters from text * Add some symbols to text to validate overexposure * Decrease Features height minimum value to 0.5mm
Diffstat (limited to 'UVtools.WPF/UserSettings.cs')
-rw-r--r--UVtools.WPF/UserSettings.cs13
1 files changed, 10 insertions, 3 deletions
diff --git a/UVtools.WPF/UserSettings.cs b/UVtools.WPF/UserSettings.cs
index 89dfea1..53296cd 100644
--- a/UVtools.WPF/UserSettings.cs
+++ b/UVtools.WPF/UserSettings.cs
@@ -35,8 +35,9 @@ namespace UVtools.WPF
private bool _checkForUpdatesOnStartup = true;
private bool _loadDemoFileOnStartup = true;
private bool _windowsTakeIntoAccountScreenScaling = true;
- private ushort _windowsHorizontalMargin = 200;
- private ushort _windowsVerticalMargin = 400;
+ private ushort _windowsHorizontalMargin = 100;
+ private ushort _windowsVerticalMargin = 60;
+ private bool _expandDescriptions = true;
private byte _defaultOpenFileExtensionIndex;
private string _defaultDirectoryOpenFile;
private string _defaultDirectorySaveFile;
@@ -46,7 +47,7 @@ namespace UVtools.WPF
private string _fileSaveNamePrefix;
private string _fileSaveNameSuffix = "_copy";
private int _maxDegreeOfParallelism;
-
+
public bool StartMaximized
{
@@ -84,6 +85,12 @@ namespace UVtools.WPF
set => RaiseAndSetIfChanged(ref _windowsVerticalMargin, value);
}
+ public bool ExpandDescriptions
+ {
+ get => _expandDescriptions;
+ set => RaiseAndSetIfChanged(ref _expandDescriptions, value);
+ }
+
public byte DefaultOpenFileExtensionIndex
{
get => _defaultOpenFileExtensionIndex;