Comment 4 for bug 1189728

Revision history for this message
Tim Peeters (tpeeters) wrote :

you are right, there is an issue in the case that the height of the flickable equals its contentsheight and flickableDirection is set to: Flickable.AutoFlickDirection (default) - allows flicking vertically if the contentHeight is not equal to the height of the Flickable. Allows flicking horizontally if the contentWidth is not equal to the width of the Flickable.

when there is a flickable, the Page height is not changed to fit under the Header, but the flickable gets a topMargin instead. However, this margin is not taken into account in the Flickable when comparing height and contentHeight.

Trying to find a solution..