mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-04 22:06:30 +03:00
commit
This commit is contained in:
@@ -82,9 +82,19 @@ namespace KeyKeeper.Views
|
||||
{
|
||||
WindowStartupLocation = WindowStartupLocation.CenterScreen
|
||||
};
|
||||
repositoryWindow.Closed += (s, e) => this.Close();
|
||||
repositoryWindow.Closed += (s, e) =>
|
||||
{
|
||||
if (AppSettings.ExitOnRepositoryClose)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Show();
|
||||
}
|
||||
};
|
||||
repositoryWindow.Show();
|
||||
this.Hide();
|
||||
this.Hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user