Reference ModernKeePassLib as a Nuget package (v2.39.1)

Correct bug when selecting search result
This commit is contained in:
BONNEVILLE Geoffroy
2018-06-08 15:39:28 +02:00
parent 49e1b709f7
commit a7f2ae91a7
4 changed files with 7 additions and 9 deletions

View File

@@ -20,7 +20,7 @@ namespace ModernKeePass.ViewModels
public System.Drawing.Color? ForegroundColor => _pwEntry?.ForegroundColor;
public bool IsRevealPasswordEnabled => !string.IsNullOrEmpty(Password);
public bool HasExpired => HasExpirationDate && _pwEntry.ExpiryTime < DateTime.Now;
public double PasswordComplexityIndicator => QualityEstimation.EstimatePasswordBits(Password.ToCharArray());
public double PasswordComplexityIndicator => QualityEstimation.EstimatePasswordBits(Password?.ToCharArray());
public bool IsFirstItem => _pwEntry == null;
public bool UpperCasePatternSelected { get; set; } = true;
public bool LowerCasePatternSelected { get; set; } = true;