Ejemplo n.º 1
0
        protected Texture GetNodeIcon(GitLock node)
        {
            Texture nodeIcon = null;

            if (!string.IsNullOrEmpty(node.Path))
            {
                nodeIcon = UnityEditorInternal.InternalEditorUtility.GetIconForFile(node.Path);
            }

            if (nodeIcon != null)
            {
                nodeIcon.hideFlags = HideFlags.HideAndDontSave;
            }

            return(nodeIcon);
        }
Ejemplo n.º 2
0
 public bool Equals(GitLock other)
 {
     return(this == other);
 }
Ejemplo n.º 3
0
 public bool Equals(GitLock p)
 {
     return(ID == p.ID);
 }
Ejemplo n.º 4
0
 public GitLockEntry(GitLock gitLock, GitFileStatus gitFileStatus)
 {
     this.gitLock       = gitLock;
     this.gitFileStatus = gitFileStatus;
     this.lockedAt      = gitLock.LockedAt.ToLocalTime().CreateRelativeTime(DateTimeOffset.Now);
 }