Corrected RecycleBin group bug

Database Settings page now has radio button for recycle bin
This commit is contained in:
BONNEVILLE Geoffroy
2018-03-12 10:21:36 +01:00
parent e7d731bb04
commit 700f76679a
5 changed files with 21 additions and 19 deletions

View File

@@ -63,7 +63,6 @@ namespace ModernKeePass.ViewModels
{
get
{
//if (_pwGroup == null) return Symbol.Add;
var result = PwIconToSegoeMapping.GetSymbolFromIcon(_pwGroup.IconId);
return result == Symbol.More ? Symbol.Folder : result;
}

View File

@@ -94,7 +94,6 @@ namespace ModernKeePass.ViewModels
{
_database = database;
Groups = _database?.RootGroup.Groups;
Groups?.Insert(0, new GroupVm());
}
}
}