mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 12:45:00 +00:00
feature: show track status in Delete Multiple Branches
panel (#785)
This commit is contained in:
parent
1ddd348a40
commit
75e9f1e9a4
4 changed files with 18 additions and 10 deletions
|
@ -7,6 +7,8 @@ namespace SourceGit.Models
|
|||
public List<string> Ahead { get; set; } = new List<string>();
|
||||
public List<string> Behind { get; set; } = new List<string>();
|
||||
|
||||
public bool IsVisible => Ahead.Count > 0 || Behind.Count > 0;
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
if (Ahead.Count == 0 && Behind.Count == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue