mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-30 13:51:53 +08:00
feature: add a toggle in perference to show author time instead of committer time in graph (#558)
This commit is contained in:
@@ -132,6 +132,12 @@ namespace SourceGit.ViewModels
|
||||
set => SetProperty(ref _check4UpdatesOnStartup, value);
|
||||
}
|
||||
|
||||
public bool ShowAuthorTimeInGraph
|
||||
{
|
||||
get => _showAuthorTimeInGraph;
|
||||
set => SetProperty(ref _showAuthorTimeInGraph, value);
|
||||
}
|
||||
|
||||
public string IgnoreUpdateTag
|
||||
{
|
||||
get => _ignoreUpdateTag;
|
||||
@@ -577,6 +583,7 @@ namespace SourceGit.ViewModels
|
||||
private int _maxHistoryCommits = 20000;
|
||||
private int _subjectGuideLength = 50;
|
||||
private bool _useFixedTabWidth = true;
|
||||
private bool _showAuthorTimeInGraph = false;
|
||||
|
||||
private bool _check4UpdatesOnStartup = true;
|
||||
private double _lastCheckUpdateTime = 0;
|
||||
|
||||
Reference in New Issue
Block a user