feature: enhance the behaviour of closing the last tab

* If the last tab is an opened repository, go back to the welcome page
* If the last tab is welcome page, quit this app
This commit is contained in:
leo 2024-05-07 10:34:04 +08:00
parent 6cd550af4d
commit 37b5f5c083
2 changed files with 17 additions and 8 deletions

View file

@ -26,13 +26,7 @@ namespace SourceGit.ViewModels
public LauncherPage()
{
_node = new RepositoryNode()
{
Id = Guid.NewGuid().ToString(),
Name = "WelcomePage",
Bookmark = 0,
IsRepository = false,
};
_node = new RepositoryNode() { Id = Guid.NewGuid().ToString() };
_data = new Welcome();
}