MouseArea {
anchors.fill: root
propagateComposedEvents: true
onPressAndHold: view.closeTab(index)
}
}
| The Following 2 Users Say Thank You to Markkyboy For This Useful Post: | ||
MouseArea {
anchors.fill: root
propagateComposedEvents: true
onPressed: {
timer.start();
}
onReleased: {
timer.stop();
}
Timer {
id: timer
interval: 500
onTriggered: {
view.closeTab(index)
}
}
}

| The Following 2 Users Say Thank You to Markkyboy For This Useful Post: | ||
| The Following 3 Users Say Thank You to coderus For This Useful Post: | ||