Fix Linux restore backup function

Fixed the issue that the guiNConfig.json file cannot be restored in the backup and restore function
This commit is contained in:
2dust
2025-01-05 10:22:18 +08:00
parent 626ebfe65d
commit 4a7bafd011
4 changed files with 11 additions and 11 deletions

View File

@@ -71,12 +71,8 @@ public partial class App : Application
private async void MenuExit_Click(object? sender, EventArgs e)
{
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
{
var service = Locator.Current.GetService<MainWindowViewModel>();
if (service != null) await service.MyAppExitAsync(false);
desktop.Shutdown();
}
var service = Locator.Current.GetService<MainWindowViewModel>();
if (service != null) await service.MyAppExitAsync(true);
service?.Shutdown(true);
}
}