mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 11:44:59 +00:00
Show Remote.URL in tooltip for relevant BranchTreeNodes
This commit is contained in:
parent
7bb4e355bd
commit
35c64b5a09
1 changed files with 2 additions and 1 deletions
|
@ -56,7 +56,8 @@ namespace SourceGit.ViewModels
|
|||
|
||||
public string Tooltip
|
||||
{
|
||||
get => Backend is Models.Branch b ? b.FriendlyName : null;
|
||||
get => Backend is Models.Branch b ?
|
||||
b.FriendlyName : (Backend is Models.Remote r ? r.URL : null);
|
||||
}
|
||||
|
||||
private Models.FilterMode _filterMode = Models.FilterMode.None;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue