mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
Error messages are now caught at the app level (see if it's a good solution in the long term)
Redesign of the create key file button
This commit is contained in:
@@ -16,10 +16,11 @@ namespace ModernKeePass.ViewModels
|
||||
|
||||
public void Save(bool close = true)
|
||||
{
|
||||
if (close && _database.Save()) _database.Close();
|
||||
_database.Save();
|
||||
if (close) _database.Close();
|
||||
}
|
||||
|
||||
internal void Save(StorageFile file)
|
||||
public void Save(StorageFile file)
|
||||
{
|
||||
_database.Save(file);
|
||||
}
|
||||
|
Reference in New Issue
Block a user