I have here a peculiar problem. We have a RAP application intended for use on a PDA/phone, but when it is displayed in a small browser window, all the textboxes on the form(s) are too tall (around twice the height they should be).

I've stepped through the code (The form is using GridLayout, number of columns=1, make columns equal=false) and have found that the TextSizeDetermination.getCharHeight() method returns an incorrect font size if the browser window is too small - 13px if the window is large, 26px (exactly double) if the window is too small.

Interestingly enough, it seems that if the window is too small, probeStore.containsProbeResult(font) in that method returns true and uses probeStore.getProbeResult(...).getSize().y for the font size. Otherwise, if the window is larger, it returns false and uses TextSizeEstimation.getCharHeight(...).

Does anyone have a pointer or two for getting around this?

Dialog with a properly-sized window:

alt text

Dialog with a small window:

alt text

link|improve this question

Have a look a this thread (just in case it is related): dev.eclipse.org/newslists/news.eclipse.technology.rap/… – VonC Dec 29 '09 at 22:24
feedback

1 Answer

up vote 0 down vote accepted

This was a bug in RAP's TextSizeDetermination class. Has been fixed now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.