Reviewers: jgw, Description: As of r5553, RadioButton now sinks ONMOUSEOUT instead of ONMOUSEUP. This patch fixes it to sink ONMOUSEUP.
You can see the original patch here: http://code.google.com/p/google-web-toolkit/source/detail?r=5553 Testing: Verified in Showcase and ran UISuite. Please review this at http://gwt-code-reviews.appspot.com/48801 Affected files: user/src/com/google/gwt/user/client/ui/RadioButton.java Index: user/src/com/google/gwt/user/client/ui/RadioButton.java =================================================================== --- user/src/com/google/gwt/user/client/ui/RadioButton.java (revision 5626) +++ user/src/com/google/gwt/user/client/ui/RadioButton.java (working copy) @@ -62,7 +62,7 @@ setStyleName("gwt-RadioButton"); sinkEvents(Event.ONCLICK); - sinkEvents(Event.ONMOUSEOUT); + sinkEvents(Event.ONMOUSEUP); sinkEvents(Event.ONBLUR); sinkEvents(Event.ONKEYDOWN); } --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
