Author: jackson
Date: 2005-06-23 13:51:50 -0400 (Thu, 23 Jun 2005)
New Revision: 46443

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

        * XplatUIX11.cs: Get the modifier keys from the keyboard driver.



Modified: trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
===================================================================
--- trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2005-06-23 17:19:54 UTC (rev 46442)
+++ trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2005-06-23 17:51:50 UTC (rev 46443)
@@ -1,3 +1,7 @@
+2005-06-23  Jackson Harper  <[EMAIL PROTECTED]>
+
+       * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
+
 2005-06-22  Jordi Mas i Hernandez <[EMAIL PROTECTED]>
        
        * DataGridTextBoxColumn.cs: fixes and enhancements

Modified: 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs
===================================================================
--- trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs    
2005-06-23 17:19:54 UTC (rev 46442)
+++ trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIX11.cs    
2005-06-23 17:51:50 UTC (rev 46443)
@@ -1273,8 +1273,14 @@
                        get {
                                return new Size(1, 1);
                        }
-               } 
+               }
 
+               internal override Keys ModifierKeys {
+                       get {
+                               return Keyboard.ModifierKeys;
+                       }
+               }
+
                internal override  Size SmallIconSize {
                        get {
                                IntPtr          list;

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

Reply via email to