Release for 1.0.15 to fix mutex + black out.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user