Exemplo n.º 1
0
 public void IssueLogEntry(GitLog.LogEntry entry)
 {
     if (OnLogEntry != null)
     {
         OnLogEntry.Invoke(entry);
     }
 }
Exemplo n.º 2
0
 private static void OnLogEntry(GitLog.LogEntry logEntry)
 {
     if (!GitSettings.UseUnityConsole)
     {
         //async call it to prevent threading problems
         GitCallbacks.DelayCall += () => { GetGitWindow <GitLogWindow>(); };
     }
 }
Exemplo n.º 3
0
 private void OnLogEntry(GitLog.LogEntry entry)
 {
     Repaint();
 }