mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Changed timeout for "Key was successfully changed" message
This commit is contained in:
parent
9c44976c44
commit
71dad53ea5
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ private async void AcceptButton_Click(object sender, EventArgs e)
|
||||||
statusLabel.Text = "Key was successfully changed";
|
statusLabel.Text = "Key was successfully changed";
|
||||||
oldKeyTextBox.Text = "";
|
oldKeyTextBox.Text = "";
|
||||||
newKeyTextBox.Text = "";
|
newKeyTextBox.Text = "";
|
||||||
await Task.Delay(2000);
|
await Task.Delay(3000);
|
||||||
statusLabel.Text = "";
|
statusLabel.Text = "";
|
||||||
}
|
}
|
||||||
else if (oldKeyTextBox.Text != PublicVar.encryptionKey.Get())
|
else if (oldKeyTextBox.Text != PublicVar.encryptionKey.Get())
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue