OSDN Git Service

矩形選択時は一番最初の選択領域を返していたが、それだとUWP版で落ちることがある
authorgdkhd812 <test@yahoo.co.jp>
Wed, 4 Oct 2017 05:32:42 +0000 (14:32 +0900)
committergdkhd812 <test@yahoo.co.jp>
Wed, 4 Oct 2017 05:32:42 +0000 (14:32 +0900)
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
             {