예제 #1
0
        private void OnPruneCompleted(PruneCompletedEventArgs e)
        {
            var notification = new ReferencesChangedNotification(e.Changes)
            {
                Text = e.Remote == null ? Resources.StrPrune : Resources.StrPrune + ": " + e.Remote.Name,
            };

            PopupsStack.PushNotification(notification);
        }
예제 #2
0
 private void OnPullCompleted(PullCompletedEventArgs e)
 {
     var notification = new ReferencesChangedNotification(e.Changes)
     {
         Text = e.Remote == null ? Resources.StrPull : Resources.StrPull + ": " + e.Remote.Name,
     };
     PopupsStack.PushNotification(notification);
 }