Show Remote.URL in tooltip for relevant BranchTreeNodes

This commit is contained in:
Göran W 2025-05-13 14:22:26 +02:00
parent 7bb4e355bd
commit 35c64b5a09

View file

@ -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;