Commit 1f71d328 authored by Jens's avatar Jens
Browse files

Fix.

parent 13287347
Branches
Tags
No related merge requests found
Showing with 0 additions and 57 deletions
......@@ -82,62 +82,5 @@ Item {
}
*/
>>>>>>> master
}
/*
TableView{
HeaderSection {
property: "title"
caption: "Title"
width: 100
}
HeaderSection {
property: "imagesource"
caption: "Image source"
width: 400
visible: true
}
HeaderSection {
property: "filename"
caption:"File Name"
width: 100
}
model: flickerModel
width: root.width
height: root.height/2 - 10
rowDelegate: Rectangle {
color: itemselected ? "#888" : (alternaterow ? "#ccc" : "#ddd")
clip: true
Rectangle{
width: parent.width
height:1
anchors.bottom: parent.bottom
color: "#aaa"
}
}
itemDelegate: Item {
width: itemwidth
height: itemheight
clip: true
Text {
anchors.fill: parent
anchors.leftMargin: 5
elide: Qt.ElideRight
text: itemvalue
color: itemselected ? "white" : "black"
}
Rectangle {
width: 1
height: parent.height
color: "#aaa"
}
}
}
*/
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment