From a682b24164426a9ef06b049437841d0cdcc16f04 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 27 Nov 2019 15:27:34 +0200 Subject: [PATCH] Added warning that text file must be in UTF-8 Encoding --- Crypto Notepad/Forms/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto Notepad/Forms/MainForm.cs b/Crypto Notepad/Forms/MainForm.cs index 34de01f..831a096 100644 --- a/Crypto Notepad/Forms/MainForm.cs +++ b/Crypto Notepad/Forms/MainForm.cs @@ -204,7 +204,7 @@ private async void SendTo() private async void ContextMenuEncryptReplace() { - DialogResult res = MessageBox.Show(this, "This action will delete the source file and replace it with encrypted version", PublicVar.appName, + DialogResult res = MessageBox.Show(this, "This action will delete the source file and replace it with encrypted version. File must be in UTF-8 Encoding.", PublicVar.appName, MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (res == DialogResult.Cancel) {