Browse Source

dont clear textbox selection when right clicking.

Dan Walmsley 7 năm trước cách đây
mục cha
commit
09892554c4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/Avalonia.Controls/TextBox.cs

+ 1 - 1
src/Avalonia.Controls/TextBox.cs

@@ -557,7 +557,7 @@ namespace Avalonia.Controls
             var index = CaretIndex = _presenter.GetCaretIndex(point);
             var text = Text;
 
-            if (text != null)
+            if (text != null && e.MouseButton == MouseButton.Left)
             {
                 switch (e.ClickCount)
                 {