mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-17 08:24:59 +00:00
feature: git bisect
support
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
parent
9eae1eeb81
commit
df5294bcb7
16 changed files with 397 additions and 7 deletions
|
@ -91,6 +91,15 @@ namespace SourceGit.Views
|
|||
set => SetValue(CurrentBranchProperty, value);
|
||||
}
|
||||
|
||||
public static readonly StyledProperty<Models.Bisect> BisectProperty =
|
||||
AvaloniaProperty.Register<Histories, Models.Bisect>(nameof(Bisect));
|
||||
|
||||
public Models.Bisect Bisect
|
||||
{
|
||||
get => GetValue(BisectProperty);
|
||||
set => SetValue(BisectProperty, value);
|
||||
}
|
||||
|
||||
public static readonly StyledProperty<AvaloniaList<Models.IssueTrackerRule>> IssueTrackerRulesProperty =
|
||||
AvaloniaProperty.Register<Histories, AvaloniaList<Models.IssueTrackerRule>>(nameof(IssueTrackerRules));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue