mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 12:15:00 +00:00
feature: supports display tags in a tree (#350)
This commit is contained in:
parent
f59af0afcf
commit
de2f70b8ea
11 changed files with 652 additions and 113 deletions
|
@ -177,6 +177,12 @@ namespace SourceGit.ViewModels
|
|||
set;
|
||||
} = string.Empty;
|
||||
|
||||
public bool ShowTagsAsTree
|
||||
{
|
||||
get => _showTagsAsTree;
|
||||
set => SetProperty(ref _showTagsAsTree, value);
|
||||
}
|
||||
|
||||
public bool UseTwoColumnsLayoutInHistories
|
||||
{
|
||||
get => _useTwoColumnsLayoutInHistories;
|
||||
|
@ -520,6 +526,7 @@ namespace SourceGit.ViewModels
|
|||
private bool _useFixedTabWidth = true;
|
||||
private bool _check4UpdatesOnStartup = true;
|
||||
|
||||
private bool _showTagsAsTree = false;
|
||||
private bool _useTwoColumnsLayoutInHistories = false;
|
||||
private bool _displayTimeAsPeriodInHistories = false;
|
||||
private bool _useSideBySideDiff = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue