refactor: custom renderer for launcher tab bar

This commit is contained in:
leo 2024-06-29 17:04:39 +08:00
parent bfea573d4b
commit 1241539260
No known key found for this signature in database
6 changed files with 112 additions and 47 deletions

View file

@ -18,12 +18,6 @@ namespace SourceGit.ViewModels
set => SetProperty(ref _data, value);
}
public bool IsTabSplitterVisible
{
get => _isTabSplitterVisible;
set => SetProperty(ref _isTabSplitterVisible, value);
}
public AvaloniaList<Notification> Notifications
{
get;
@ -55,6 +49,5 @@ namespace SourceGit.ViewModels
private RepositoryNode _node = null;
private object _data = null;
private bool _isTabSplitterVisible = true;
}
}