Double click
This commit is contained in:
parent
27735bbdfc
commit
e12abfd43b
@ -38,15 +38,22 @@ Rectangle {
|
|||||||
text: styleData.value
|
text: styleData.value
|
||||||
font.pixelSize: 11
|
font.pixelSize: 11
|
||||||
MouseArea {
|
MouseArea {
|
||||||
acceptedButtons: Qt.RightButton
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||||
propagateComposedEvents: true
|
propagateComposedEvents: true
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
onClicked: {
|
onClicked: {
|
||||||
blockTable.selection.clear()
|
blockTable.selection.clear()
|
||||||
blockTable.selection.select(styleData.row)
|
blockTable.selection.select(styleData.row)
|
||||||
|
|
||||||
contextMenu.row = styleData.row;
|
if(mouse.button == Qt.RightButton) {
|
||||||
contextMenu.popup()
|
contextMenu.row = styleData.row;
|
||||||
|
contextMenu.popup()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onDoubleClicked: {
|
||||||
|
popup.visible = true
|
||||||
|
popup.setDetails(blockModel.get(styleData.row))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user