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