소스 검색

fix crash when non selecting

Coder 1 년 전
부모
커밋
32b326d6f4
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      NppChnConvPlugin/PluginBridge.cs

+ 1 - 0
NppChnConvPlugin/PluginBridge.cs

@@ -50,6 +50,7 @@ namespace NppChnConvPlugin
             {
                 var start = CurrentEditor.GetSelectionNStart(i);
                 var end = CurrentEditor.GetSelectionNEnd(i);
+                if (end.Value - start.Value < 1) continue;
 
                 CurrentEditor.SetTargetStart(start);
                 CurrentEditor.SetTargetEnd(end);