Răsfoiți Sursa

2006-01-18 Peter Dennis Bartok <[email protected]>

	* Label.cs: A label by default is not a tabstop (Fixes one of our
	  failing nunit tests)


svn path=/trunk/mcs/; revision=55769
Peter Dennis Bartok 20 ani în urmă
părinte
comite
ab1cf564fe

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

@@ -1,3 +1,8 @@
+2006-01-18  Peter Dennis Bartok  <[email protected]>
+
+	* Label.cs: A label by default is not a tabstop (Fixes one of our
+	  failing nunit tests)
+
 2006-01-18  Peter Dennis Bartok  <[email protected]> 
 
 	* XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282

+ 1 - 0
mcs/class/Managed.Windows.Forms/System.Windows.Forms/Label.cs

@@ -88,6 +88,7 @@ namespace System.Windows.Forms
     		{
 			// Defaults in the Spec
 			autosize = false;
+			tab_stop = false;
 			string_format = new StringFormat();
 			TextAlign = ContentAlignment.TopLeft;
 			image = null;