fix errors in qml (they worked fine right before I committed

This commit is contained in:
lordwelch 2016-01-14 21:25:31 -08:00
parent 0362fd2227
commit 5c48c4c60a
2 changed files with 27 additions and 25 deletions

View File

@ -1,7 +1,9 @@
import QtQuick 2.0
Rectangle {
property int index: 0
property int index: 0/*
anchors.right: parent
anchors.left: parent*/
Text {
id: cellText
@ -24,4 +26,4 @@ Rectangle {
anchors.fill: parent
}
}
}

View File

@ -67,34 +67,34 @@ ApplicationWindow {
anchors.left: parent.left
}
}
}
Rectangle {
id: col2
objectName: "col2"
color: "#4f90e2"
border.width: 0
Rectangle {
id: col2
objectName: "col2"
color: "#4f90e2"
border.width: 0
Column {
id: data2
objectName: "data2"
anchors.fill: parent
Column {
id: data2
objectName: "data2"
anchors.fill: parent
}
}
}
}
}
Rectangle {
id: mainView
objectName: "mainView"
anchors.right: parent.right
anchors.rightMargin: 0
anchors.leftMargin: 0
anchors.left: gridRect.right
anchors.bottom: parent.bottom
anchors.top: parent.top
z: 1
clip: false
visible: true
Rectangle {
id: mainView
objectName: "mainView"
anchors.right: parent.right
anchors.rightMargin: 0
anchors.leftMargin: 0
anchors.left: gridRect.right
anchors.bottom: parent.bottom
anchors.top: parent.top
z: 1
clip: false
visible: true
}
}
}