Issue with double clicking tray icon. Added list management.

This commit is contained in:
Patrick Fic
2020-01-17 00:41:41 -08:00
parent 32aec8e4ff
commit 2b3d9ac76b
15 changed files with 292 additions and 69 deletions

View File

@@ -14,7 +14,7 @@ namespace BodyshopUploader.ViewModels
if (_loginCommand == null)
{
_loginCommand = new RelayCommand(
p => !string.IsNullOrEmpty(UserName) && UserPassword?.Length > 6,
p => !string.IsNullOrEmpty(UserName) && UserPassword?.Length > 5,
async p => { await LoginAsync(p as Window); });
}
return _loginCommand;