Added line breaks for better readability

This commit is contained in:
Alexander 2019-11-07 20:07:52 +02:00
parent feb0dcb16a
commit a208e5202c

View file

@ -162,7 +162,15 @@ private async void OpenAsotiations()
DialogResult res = MessageBox.Show(this, "Try to decrypt \"" + PublicVar.openFileName + "\" file?", PublicVar.appName,
MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (res == DialogResult.No)
{
string opnfile = File.ReadAllText(args[1]);
string NameWithotPath = Path.GetFileName(args[1]);
richTextBox.Text = opnfile;
filePath = args[1];
Text = NameWithotPath + " " + PublicVar.appName;
StatusPanelFileInfo();
return;
}
}
await DecryptAES();
}