Explorar el Código

fix crash when non selecting

Coder hace 1 año
padre
commit
32b326d6f4
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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);