Files

31 lines
747 B
C#
Raw Permalink Normal View History

2026-01-08 16:50:20 +00:00
using System;
using Codice.Client.Common;
using Unity.PlasticSCM.Editor.UI.Avatar;
using UnityEngine;
namespace Unity.PlasticSCM.Editor.UI
{
internal static class DrawUserIcon
{
internal static void ForPendingChangesTab(
ResolvedUser currentUser,
Action avatarLoadedAction)
{
Rect rect = GUILayoutUtility.GetRect(28f, 28f, GUILayout.ExpandWidth(false));
if (currentUser == null)
{
GUI.DrawTexture(rect, Images.GetEmptyGravatar());
return;
}
GUI.Label(rect, new GUIContent(
GetAvatar.ForEmail(currentUser.Name, avatarLoadedAction),
currentUser.Name));
}
}
}