From 71dad53ea5f021b19d0b11fcded9f8c6445be273 Mon Sep 17 00:00:00 2001 From: Alexander Date: Tue, 15 Oct 2019 19:54:55 +0300 Subject: [PATCH] Changed timeout for "Key was successfully changed" message --- Crypto Notepad/ChangeKeyForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto Notepad/ChangeKeyForm.cs b/Crypto Notepad/ChangeKeyForm.cs index 70339e9..c758afd 100644 --- a/Crypto Notepad/ChangeKeyForm.cs +++ b/Crypto Notepad/ChangeKeyForm.cs @@ -26,7 +26,7 @@ private async void AcceptButton_Click(object sender, EventArgs e) statusLabel.Text = "Key was successfully changed"; oldKeyTextBox.Text = ""; newKeyTextBox.Text = ""; - await Task.Delay(2000); + await Task.Delay(3000); statusLabel.Text = ""; } else if (oldKeyTextBox.Text != PublicVar.encryptionKey.Get())