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