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;
|
acceptButton.Enabled = false;
|
||||||
retryButton.Enabled = false;
|
retryButton.Enabled = false;
|
||||||
cancelButton.Enabled = true;
|
cancelButton.Enabled = true;
|
||||||
userInfoLabel.Text = "Loading . . . ";
|
|
||||||
logTextBox.Text = string.Empty;
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await Install();
|
await Install();
|
||||||
|
@ -165,6 +163,8 @@ namespace CreamInstaller
|
||||||
|
|
||||||
private void OnLoad(object sender, EventArgs e)
|
private void OnLoad(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
userInfoLabel.Text = "Loading . . . ";
|
||||||
|
logTextBox.Text = string.Empty;
|
||||||
Start();
|
Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue