PListView: Fix layout issues on resize

This commit is contained in:
Thomas Perl 2015-05-24 18:44:33 +02:00
parent 4a0b3f1b12
commit fa280e9ef5

View file

@ -30,6 +30,19 @@ ListView {
boundsBehavior: Flickable.StopAtBounds
function relayout() {
var _contentY = contentY;
var _model = model;
model = null;
model = _model;
contentY = _contentY;
}
Connections {
target: pgst
onScalefChanged: relayout();
}
header: SlidePageHeader {
id: header
title: pListView.title