Fixes when test merge manager progress bar is shown

This commit is contained in:
Cyberboss
2017-11-11 17:27:58 -05:00
parent 6b868936b4
commit 09d3e23a3a
+6 -6
View File
@@ -36,9 +36,6 @@ namespace TGControlPanel
{
Enabled = false;
UseWaitCursor = true;
ApplyingPullRequestsLabel.Visible = true;
ApplyingPullRequestsProgressBar.Visible = true;
PullRequestListBox.Visible = false;
try
{
PullRequestListBox.Items.Clear();
@@ -105,9 +102,6 @@ namespace TGControlPanel
{
Enabled = true;
UseWaitCursor = false;
ApplyingPullRequestsLabel.Visible = false;
ApplyingPullRequestsProgressBar.Visible = false;
PullRequestListBox.Visible = true;
}
}
@@ -130,6 +124,9 @@ namespace TGControlPanel
{
Enabled = false;
UseWaitCursor = true;
ApplyingPullRequestsLabel.Visible = true;
ApplyingPullRequestsProgressBar.Visible = true;
PullRequestListBox.Visible = false;
try
{
//so first collect a list of pulls that are checked
@@ -192,6 +189,9 @@ namespace TGControlPanel
{
Enabled = true;
UseWaitCursor = false;
ApplyingPullRequestsLabel.Visible = false;
ApplyingPullRequestsProgressBar.Visible = false;
PullRequestListBox.Visible = true;
}
}