Răsfoiți Sursa

* TextBoxBase.cs: There is no need to expand selection on
MouseMove.


svn path=/trunk/mcs/; revision=67678

Jackson Harper 19 ani în urmă
părinte
comite
cb9ff20c57

+ 2 - 0
mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog

@@ -2,6 +2,8 @@
 
 	* TreeView.cs: Use the currently highlighted node for the
 	BeforeSelect event.
+	* TextBoxBase.cs: There is no need to expand selection on
+	MouseMove.
 
 2006-11-10  Andreia Gaita  <[email protected]>
 

+ 0 - 2
mcs/class/Managed.Windows.Forms/System.Windows.Forms/TextBoxBase.cs

@@ -1741,8 +1741,6 @@ namespace System.Windows.Forms {
 				if (click_mode == CaretSelection.Position) {
 					document.SetSelectionToCaret(false);
 					document.DisplayCaret();
-				} else {
-					document.ExpandSelection(click_mode, true);
 				}
 			}
 		}