Re: [cp-patches] RFC: adjust textarea size automatically

2006-02-28 Thread Robert Schuster
Hi, thanks for spotting this. I fixed that. cya Robert Anthony Balkissoon wrote: > On Wed, 2006-02-22 at 12:34 +0100, Robert Schuster wrote: > > >>2006-02-22 Robert Schuster <[EMAIL PROTECTED]> >> >>* javax/swing/text/PlainDocument.java: >>(getPreferredSpan): Added missing 'b

Re: [cp-patches] RFC: adjust textarea size automatically

2006-02-22 Thread Anthony Balkissoon
On Wed, 2006-02-22 at 12:34 +0100, Robert Schuster wrote: > 2006-02-22 Robert Schuster <[EMAIL PROTECTED]> > > * javax/swing/text/PlainDocument.java: > (getPreferredSpan): Added missing 'break'. > statement which corrects an unwanted fall through. > (updateDamage

Re: [cp-patches] RFC: adjust textarea size automatically

2006-02-22 Thread Robert Schuster
Hi. Roman Kennke wrote: > Hi Robert, > > looks good, please commit this (if you haven't already). Cool. Thanks for the review. I committed the version attached. It the same like the old one but corrects the copyright header. :) ChangeLog stays the same: 2006-02-22 Robert Schuster <[EMAIL PR

Re: [cp-patches] RFC: adjust textarea size automatically

2006-02-22 Thread Roman Kennke
Hi Robert, looks good, please commit this (if you haven't already). /Roman Am Mittwoch, den 22.02.2006, 10:51 +0100 schrieb Robert Schuster: > Hi. > > Roman Kennke wrote: > > Am Mittwoch, den 22.02.2006, 09:08 +0100 schrieb Robert Schuster: > > > >>Hi, > >>as mentioned in PR 26157[0] I observe

Re: [cp-patches] RFC: adjust textarea size automatically

2006-02-22 Thread Robert Schuster
Hi. Roman Kennke wrote: > Am Mittwoch, den 22.02.2006, 09:08 +0100 schrieb Robert Schuster: > >>Hi, >>as mentioned in PR 26157[0] I observed that the JDK's JTextArea adjusts its >>size >>automatically when the characters leave the allocation area of the component. >>Our JTextArea did not have th

Re: [cp-patches] RFC: adjust textarea size automatically

2006-02-22 Thread Roman Kennke
Am Mittwoch, den 22.02.2006, 09:08 +0100 schrieb Robert Schuster: > Hi, > as mentioned in PR 26157[0] I observed that the JDK's JTextArea adjusts its > size > automatically when the characters leave the allocation area of the component. > Our JTextArea did not have this functionality until now. >

[cp-patches] RFC: adjust textarea size automatically

2006-02-22 Thread Robert Schuster
Hi, as mentioned in PR 26157[0] I observed that the JDK's JTextArea adjusts its size automatically when the characters leave the allocation area of the component. Our JTextArea did not have this functionality until now. It took me a while to find out where to place the code that could do the necce