logTextBox will no longer clear when retrying
This commit is contained in:
parent
3189e7462a
commit
37d7efc36e
1 changed files with 2 additions and 2 deletions
|
@ -145,8 +145,6 @@ namespace CreamInstaller
|
|||
acceptButton.Enabled = false;
|
||||
retryButton.Enabled = false;
|
||||
cancelButton.Enabled = true;
|
||||
userInfoLabel.Text = "Loading . . . ";
|
||||
logTextBox.Text = string.Empty;
|
||||
try
|
||||
{
|
||||
await Install();
|
||||
|
@ -165,6 +163,8 @@ namespace CreamInstaller
|
|||
|
||||
private void OnLoad(object sender, EventArgs e)
|
||||
{
|
||||
userInfoLabel.Text = "Loading . . . ";
|
||||
logTextBox.Text = string.Empty;
|
||||
Start();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue