Add a progress bar while applying PRs

This commit is contained in:
Cyberboss
2017-11-11 17:27:58 -05:00
parent 77a4fc4b7e
commit bab2d1faea
2 changed files with 34 additions and 0 deletions
+6
View File
@@ -36,6 +36,9 @@ namespace TGControlPanel
{
Enabled = false;
UseWaitCursor = true;
ApplyingPullRequestsLabel.Visible = true;
ApplyingPullRequestsProgressBar.Visible = true;
PullRequestListBox.Visible = false;
try
{
PullRequestListBox.Items.Clear();
@@ -102,6 +105,9 @@ namespace TGControlPanel
{
Enabled = true;
UseWaitCursor = false;
ApplyingPullRequestsLabel.Visible = false;
ApplyingPullRequestsProgressBar.Visible = false;
PullRequestListBox.Visible = true;
}
}