From 905dc5ba0b7085d136e43730aebe9466aa77d731 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 21 Aug 2019 16:19:10 +0300 Subject: [PATCH] Fixed bug when the password entry window was opened twice --- Crypto Notepad/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Crypto Notepad/MainForm.cs b/Crypto Notepad/MainForm.cs index c166972..ae8d365 100644 --- a/Crypto Notepad/MainForm.cs +++ b/Crypto Notepad/MainForm.cs @@ -771,7 +771,7 @@ private void MainWindow_Load(object sender, EventArgs e) MenuIcons(); DeleteUpdateFiles(); - if (args.Length > 1) /*drag & drop to executable*/ + if (args.Length == 2) /*drag & drop to executable*/ { OpenAsotiations(); }