mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-24 05:35:00 +00:00
feature: allow to hide tags in graph (#1109)
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
parent
ae1e46b586
commit
2512d3be7a
10 changed files with 48 additions and 20 deletions
|
@ -183,6 +183,12 @@ namespace SourceGit.ViewModels
|
|||
set => SetProperty(ref _showTagsAsTree, value);
|
||||
}
|
||||
|
||||
public bool ShowTagsInGraph
|
||||
{
|
||||
get => _showTagsInGraph;
|
||||
set => SetProperty(ref _showTagsInGraph, value);
|
||||
}
|
||||
|
||||
public bool UseTwoColumnsLayoutInHistories
|
||||
{
|
||||
get => _useTwoColumnsLayoutInHistories;
|
||||
|
@ -643,6 +649,7 @@ namespace SourceGit.ViewModels
|
|||
private string _ignoreUpdateTag = string.Empty;
|
||||
|
||||
private bool _showTagsAsTree = false;
|
||||
private bool _showTagsInGraph = true;
|
||||
private bool _useTwoColumnsLayoutInHistories = false;
|
||||
private bool _displayTimeAsPeriodInHistories = false;
|
||||
private bool _useSideBySideDiff = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue