From ce21f67d4674cff831b142665b56b1ec00100bbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=93=9D=E7=82=B9lilac?= Date: Wed, 30 Dec 2020 20:57:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=91=BD=E4=BB=A4=E4=B8=BA?= =?UTF-8?q?=E7=A9=BA=E6=97=B6=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ContextMenuManager/Controls/NewOpenWithDialog.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ContextMenuManager/Controls/NewOpenWithDialog.cs b/ContextMenuManager/Controls/NewOpenWithDialog.cs index 06edf20..ab57186 100644 --- a/ContextMenuManager/Controls/NewOpenWithDialog.cs +++ b/ContextMenuManager/Controls/NewOpenWithDialog.cs @@ -40,9 +40,9 @@ namespace ContextMenuManager.Controls MessageBoxEx.Show(AppString.MessageBox.TextCannotBeEmpty); return; } - if(Command.IsNullOrWhiteSpace()) + if(FullCommand.IsNullOrWhiteSpace()) { - MessageBoxEx.Show(AppString.MessageBox.TextCannotBeEmpty); + MessageBoxEx.Show(AppString.MessageBox.CommandCannotBeEmpty); return; } FilePath = ObjectPath.ExtractFilePath(Command);