Auto create new recycle bin if needed

Entries now also make use of the recycle bin
New path indication below groups and entries title
Password generator now has custom characters back (working thanks to lib 2.37)
This commit is contained in:
2017-10-31 12:14:26 +01:00
committed by BONNEVILLE Geoffroy
parent 699452667c
commit d32f312d60
8 changed files with 504 additions and 58 deletions

View File

@@ -84,7 +84,7 @@ namespace ModernKeePass.Pages
case -1:
return;
case 0:
group = Model.CreateNewGroup();
group = Model.AddNewGroup();
break;
default:
group = LeftListView.SelectedItem as GroupVm;
@@ -101,7 +101,7 @@ namespace ModernKeePass.Pages
case -1:
return;
case 0:
entry = Model.CreateNewEntry();
entry = Model.AddNewEntry();
break;
default:
entry = GridView.SelectedItem as EntryVm;