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, 8 insertions, 3 deletions
diff --git a/UVtools.WPF/MainWindow.axaml.cs b/UVtools.WPF/MainWindow.axaml.cs
index 45bef69..676a0fc 100644
--- a/UVtools.WPF/MainWindow.axaml.cs
+++ b/UVtools.WPF/MainWindow.axaml.cs
@@ -665,6 +665,11 @@ namespace UVtools.WPF
await new BenchmarkWindow().ShowDialog(this);
}
+ public void MenuHelpOpenSettingsFolderClicked()
+ {
+ App.StartProcess(UserSettings.SettingsFolder);
+ }
+
public async void MenuHelpInstallProfilesClicked()
{
var PEFolder = App.GetPrusaSlicerDirectory();
@@ -690,8 +695,8 @@ namespace UVtools.WPF
private void UpdateTitle()
{
Title = (SlicerFile is null
- ? $"{About.Software} Version: {AppSettings.Version}"
- : $"{About.Software} File: {Path.GetFileName(SlicerFile.FileFullPath)} ({Math.Round(LastStopWatch.ElapsedMilliseconds / 1000m, 2)}s) Version: {AppSettings.Version}")
+ ? $"{About.Software} Version: {AppSettings.VersionStr}"
+ : $"{About.Software} File: {Path.GetFileName(SlicerFile.FileFullPath)} ({Math.Round(LastStopWatch.ElapsedMilliseconds / 1000m, 2)}s) Version: {AppSettings.VersionStr}")
;
#if DEBUG
@@ -1103,7 +1108,7 @@ namespace UVtools.WPF
{
SlicerFile.SetValueFromPrintParameterModifier(modifier, modifier.NewValue);
}*/
- SlicerFile.SetValuesFromPrintParametersModifiers();
+ SlicerFile.EditPrintParameters(operation);
RefreshProperties();
ResetDataContext();