OSDN Git Service

矩形選択時は一番最初の選択領域を返していたが、それだとUWP版で落ちることがある
[fooeditengine/FooEditEngine.git] / Core / TextServiceFramework / TextStoreHelper.cs
index 1f98d9a..21541dc 100644 (file)
@@ -71,7 +71,7 @@ namespace FooEditEngine
             if (controller.RectSelection && selectons.Count > 0)
             {
                 sel.Index = selectons[0].start;
-                sel.Length = selectons[0].length;
+                sel.Length = 0;
             }
             else
             {