08-28-2018 02:54 PM
how does one prevent double clicking action on mouse ?
08-29-2018 06:52 AM
Hi,
You need to "swallow" the event. For that purpose in the control/panel callback capture the double-click event in the switch-case statement and return 1. Normally callbacks return 0.
Returning 1 causes the swallowing.
See the documentation for more information.