From e12abfd43b99e05a05957922f01e4f5460d286fb Mon Sep 17 00:00:00 2001 From: obscuren Date: Sun, 17 Aug 2014 13:05:43 +0200 Subject: [PATCH] Double click --- ethereal/assets/qml/views/chain.qml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/ethereal/assets/qml/views/chain.qml b/ethereal/assets/qml/views/chain.qml index 0f5604a9f7..270018eb2d 100644 --- a/ethereal/assets/qml/views/chain.qml +++ b/ethereal/assets/qml/views/chain.qml @@ -38,15 +38,22 @@ Rectangle { text: styleData.value font.pixelSize: 11 MouseArea { - acceptedButtons: Qt.RightButton + acceptedButtons: Qt.LeftButton | Qt.RightButton propagateComposedEvents: true anchors.fill: parent onClicked: { blockTable.selection.clear() blockTable.selection.select(styleData.row) - contextMenu.row = styleData.row; - contextMenu.popup() + if(mouse.button == Qt.RightButton) { + contextMenu.row = styleData.row; + contextMenu.popup() + } + } + + onDoubleClicked: { + popup.visible = true + popup.setDetails(blockModel.get(styleData.row)) } } }