mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 12:15:00 +00:00
feature: add a toggle in perference to show author time instead of committer time in graph (#558)
This commit is contained in:
parent
1f7a54e61e
commit
21e15a1af4
7 changed files with 53 additions and 17 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue