Procházet zdrojové kódy

fix crash when non selecting

Coder před 1 rokem
rodič
revize
32b326d6f4
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  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);