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/plaf/basic/BasicArrowButton.java
(BasicArrowButton): Should set 'focusable' to false.
(BasicArrowButton): Should set 'focusable' to false.
Index: javax/swing/plaf/basic/BasicArrowButton.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/plaf/basic/BasicArrowButton.java,v
retrieving revision 1.19
diff -u -r1.19 BasicArrowButton.java
--- javax/swing/plaf/basic/BasicArrowButton.java 15 Jun 2006 14:15:45 -0000 1.19
+++ javax/swing/plaf/basic/BasicArrowButton.java 15 Jun 2006 18:28:33 -0000
@@ -95,6 +95,7 @@
{
super();
setDirection(direction);
+ setFocusable(false);
}
/**
@@ -116,6 +117,7 @@
this.shadow = shadow;
this.darkShadow = darkShadow;
this.highlight = highlight;
+ setFocusable(false);
}
/**