https://bugzilla.novell.com/show_bug.cgi?id=389996
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=389996#c4 Atsushi Enomoto <[EMAIL PROTECTED]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|[EMAIL PROTECTED] | --- Comment #4 from Atsushi Enomoto <[EMAIL PROTECTED]> 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. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
