Release for 1.0.15 to fix mutex + black out.

This commit is contained in:
Patrick Fic
2021-04-21 11:39:50 -07:00
parent 574c9f7823
commit fc70a94d5f
9 changed files with 59 additions and 29 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Windows;
using System.Windows.Input;
namespace BodyshopPartner.ViewModels
@@ -32,8 +33,13 @@ namespace BodyshopPartner.ViewModels
{
_openMainWindowCommand = new RelayCommand(
p => true,
p => Console.WriteLine("nada")
); ;
p =>
{
((Window)p).Show();
}
);
}
return _openMainWindowCommand;
}
@@ -81,7 +87,7 @@ namespace BodyshopPartner.ViewModels
_startFolderMonitorsCommand = new RelayCommand(
p => MonitoringPaths.Count > 0 && ActiveShop != null,
p => StartAllFolderMonitors()
) ;
);
}
return _startFolderMonitorsCommand;
}
@@ -148,7 +154,7 @@ namespace BodyshopPartner.ViewModels
async p =>
{
await InstallUpdates();
});
}
return _installUpdatesCommand;