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>2020-11-08 02:47:57 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-11-08 02:47:57 +0300
commit2e349328d6dea431325c8242fe915a402a806bb3 (patch)
tree47d14c3f96cfd0ac140b72ab1ee21869c4eed372 /UVtools.WPF/UserSettings.cs
parent5da3c7e173094666cd900b3ee09fe3dd93d97985 (diff)
v1.2.0v1.2.0
* (Add) RAM usage on title bar * (Add) Clipboard manager: Undo (Ctrl + Z) and Redo (Ctrl + Y) modifications (Memory optimized) * (Add) Current layer properties on information tab * (Fix) Long windows with system zoom bigger than 100% were being hidden and overflow (#90) * (Fix) Do not recompute issues nor properties nor reshow layer if operation is cancelled or failed
Diffstat (limited to 'UVtools.WPF/UserSettings.cs')
-rw-r--r--UVtools.WPF/UserSettings.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.WPF/UserSettings.cs b/UVtools.WPF/UserSettings.cs
index 28fbe6e..f0f9d4f 100644
--- a/UVtools.WPF/UserSettings.cs
+++ b/UVtools.WPF/UserSettings.cs
@@ -1047,7 +1047,7 @@ namespace UVtools.WPF
[NotNull]
public string AppVersion
{
- get => _appVersion ??= AppSettings.Version.ToString();
+ get => _appVersion ??= App.Version.ToString();
set => this.RaiseAndSetIfChanged(ref _appVersion, value);
}
@@ -1143,7 +1143,7 @@ namespace UVtools.WPF
public static void SetVersion()
{
- Instance.AppVersion = AppSettings.Version.ToString();
+ Instance.AppVersion = App.Version.ToString();
}
public static object[] PackObjects =>