Hey,

This is another one of the classes that sets 'focusable' to false.  I
will be committing this and its mauve test immediately after posting
this.

Cheers,
Tania

2006-06-15  Tania Bento  <[EMAIL PROTECTED]>

        * javax/swing/JRadioButtonMenuItem.java
        (JRadioButtonMenuItem): Should set 'focusable' to false.
Index: javax/swing/JRadioButtonMenuItem.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/JRadioButtonMenuItem.java,v
retrieving revision 1.12
diff -u -r1.12 JRadioButtonMenuItem.java
--- javax/swing/JRadioButtonMenuItem.java	20 Apr 2006 12:47:40 -0000	1.12
+++ javax/swing/JRadioButtonMenuItem.java	15 Jun 2006 18:07:40 -0000
@@ -144,6 +144,7 @@
     super(text, icon);
     setModel(new JToggleButton.ToggleButtonModel());
     model.setSelected(selected);
+    setFocusable(false);
   }
 
   /**

Reply via email to