[Mono-bugs] [Bug 389996] Controls appear as disabled after X11 changes

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Thu May 15 12:39:46 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=389996

User atsushi at ximian.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=389996#c4


Atsushi Enomoto <atsushi at ximian.com> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                                        |ASSIGNED
      Info Provider|calberto.cortez at gmail.com                       |




--- Comment #4 from Atsushi Enomoto <atsushi at ximian.com>  2008-05-15 10:39:46 MST ---
Simply a combobox reproduces the issue:

--------
using System;
using System.Windows.Forms;

public class TestForm : Form
{
        public static void Main ()
        {
                Application.Run (new TestForm ());
        }

        public TestForm ()
        {
                ComboBox cb = new ComboBox ();
                cb.Items.Add ("test1");
                cb.Items.Add ("test2");
                cb.Items.Add ("test3");
                Controls.Add (cb);
        }
}
--------
Drop down the list items - it does not work.

So far I have found:

- When I disable XIM (XMODIFIERS="@im=dummy") I don't see the issue.
- It is about wrong window that captures ButtonPress event (it should usually
be raised from clientWindow, while actually wholeWindow raised it).


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list