Author: jackson
Date: 2005-07-01 15:26:41 -0400 (Fri, 01 Jul 2005)
New Revision: 46857

Modified:
   trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
   trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TabControl.cs
Log:

        * TabControl.cs: Make sure the bottom of the tab covers the pages
        border.
      


Modified: trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
===================================================================
--- trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2005-07-01 19:21:35 UTC (rev 46856)
+++ trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2005-07-01 19:26:41 UTC (rev 46857)
@@ -1,3 +1,8 @@
+2005-07-01  Jackson Harper  <[EMAIL PROTECTED]>
+
+       * TabControl.cs: Make sure the bottom of the tab covers the pages
+       border.
+
 2005-06-30  Peter Bartok  <[EMAIL PROTECTED]> 
 
        * Form.cs (ShowDialog): Assign owner of the dialog

Modified: 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TabControl.cs
===================================================================
--- trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TabControl.cs    
2005-07-01 19:21:35 UTC (rev 46856)
+++ trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TabControl.cs    
2005-07-01 19:26:41 UTC (rev 46857)
@@ -913,7 +913,7 @@
                                int l = page.TabBounds.Left - 4;
                                int r = page.TabBounds.Right + 4;
                                int y = page.TabBounds.Y;
-                               int h = page.TabBounds.Height + 2;
+                               int h = page.TabBounds.Height + 3;
 
                                if (l < left_edge)
                                        l = left_edge;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to