Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi
I am using qml Mousearea onReleased signal to call a function. The function is being called as required onRelease after drag but the same is being called even on click. So even a click generates onReleased signal. Can this be avoided ?
Hi @saitej
The clicked signal is combination of press and release. Instead of clicked signal, Use onPressed signal to avoid misinterpret.
@eswar
I want to use Released only not clicked. I don't want the item to do any thing on clicked.