Browse Source

ComPDFKit.Tool(win) - 修复Delete键删除文字问题

TangJinZhou 3 months ago
parent
commit
ca519fb154
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Demo/Examples/ComPDFKit.Tool/CPDFViewerTool.Command.cs

+ 1 - 1
Demo/Examples/ComPDFKit.Tool/CPDFViewerTool.Command.cs

@@ -559,7 +559,7 @@ namespace ComPDFKit.Tool
                     editType = CPDFEditType.EditText;
                     CPDFEditTextArea editTextArea = currentEditAreaObject.cPDFEditArea as CPDFEditTextArea;
                     string selectContent = editTextArea.SelectText;
-                    if (string.IsNullOrEmpty(selectContent) == false && !selectAllCharsForLine)
+                    if (!selectAllCharsForLine)
                     {
                         DeleteChars();
                     }