[BUG] On Epix DataFields, dimensions retrieved by dc.getHeight are sometimes wrong

Hi,
I have noticed that on some Epix DataFields, dimensions retrieved by dc.getHeight are wrong.

The screen dimensions of the Epix are 205x148

To demonstrate the problem, I have written this simple code that prints the height and width of the dc on the screen :

function onUpdate(dc) {
dc.setColor(Gfx.COLOR_BLACK,Gfx.COLOR_WHITE );
dc.clear();
var string="h=" + dc.getHeight() + " w=" + dc.getWidth();
dc.drawText( 0 , 0 , Gfx.FONT_SMALL , string , Gfx.TEXT_JUSTIFY_LEFT );
}

Hereafter screen shots for different Datafields layouts :

1 single field : Dimensions are correct : h=148 w=205 :
http://wissler.free.fr/img/epix/1field.jpg

2 data fields : Dimensions are correct : h=74 w=205 :
http://wissler.free.fr/img/epix/2fields.jpg

3 data fields A : Heights are wrong: h=74 should be around h=43 , h=57 , h=44 (according to the simulator) :


3 data fields B : Heights are wrong: h=98 should be h=74 and h=48 should be h=74 :


4 data fields A : Dimensions are correct : h=37 w=205, but on the 3rd field, the horizontal origin X=0 begins in the middle of the screen, not on the left !!!


4 data fields B : Dimensions are correct : h=74 w=103


For information, I am using the Connect IQ SDK 1.1.1