瀏覽代碼

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);