summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTania Bento <tbento@redhat.com>2006-06-15 19:46:45 +0000
committerTania Bento <tbento@redhat.com>2006-06-15 19:46:45 +0000
commit8155c3ba52800471a0f286eacc4c67c06e5641c8 (patch)
tree7fd17fb945b0265572f3737168efa71d63962c82
parentabe68d1e4d5dc1c12ac9e36274427b5519c23e62 (diff)
downloadclasspath-8155c3ba52800471a0f286eacc4c67c06e5641c8.tar.gz
2006-06-15 Tania Bento <tbento@redhat.com>
* javax/swing/JCheckBoxMenuItem.java (JCheckBoxMenuItem): Should set 'focusable' to false.
-rw-r--r--javax/swing/JCheckBoxMenuItem.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/javax/swing/JCheckBoxMenuItem.java b/javax/swing/JCheckBoxMenuItem.java
index 42ed9ced6..51634c93f 100644
--- a/javax/swing/JCheckBoxMenuItem.java
+++ b/javax/swing/JCheckBoxMenuItem.java
@@ -149,6 +149,7 @@ public class JCheckBoxMenuItem
this.state = state;
if (state == true)
this.setSelected(true);
+ setFocusable(false);
}
/**