Am Mittwoch, den 14.09.2005, 13:17 -0400 schrieb Anthony Balkissoon: > This patch was inappropriate. The appropriate changes should be made in > JTextArea. I've attached the new patch and will check it in and the > Mauve test case. > > 2005-09-14 Anthony Balkissoon <[EMAIL PROTECTED]> > > * javax/swing/JTextArea.java: > (append): After non-empty append, invalidate. > (setRows): If number of rows changes, invalidate. > (setColumns): If number of columns changes, invalidate.
In Swing you should not use invalidate(). Generally you should use
revalidate() in Swing. This also calls invalidate() and triggers the
Swing RepaintManager to do it's job and validate and repaint the
component soon. Could you change that?
/Roman
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Classpath-patches mailing list [email protected] http://lists.gnu.org/mailman/listinfo/classpath-patches
