fixed several qml warnings

This commit is contained in:
Luis Ángel San Martín
2016-01-13 21:24:23 +01:00
parent ac4772812a
commit 97c788203c
2 changed files with 24 additions and 6 deletions

View File

@ -373,7 +373,7 @@ Rectangle {
objectName: "grid"
anchors.fill: parent
cellHeight: cellCustomHeight
highlight: appHighlight
//highlight: appHighlight
focus: true
model: comicsList
delegate: appDelegate
@ -432,7 +432,7 @@ Rectangle {
var rest = width - (cWidth * wholeCells)
grid.cellWidth = cWidth + Math.floor(rest / wholeCells);
console.log("cWidth",cWidth,"wholeCells=",wholeCells,"rest=",rest,"cellWidth=",cellWidth,"width=",width);
//console.log("cWidth",cWidth,"wholeCells=",wholeCells,"rest=",rest,"cellWidth=",cellWidth,"width=",width);
}
}