If we click several times quickly, only one click out of two is taken into account.
We need a way to take every click into account.
Example :
| b |
b := BlElement new extent: 50 asPoint.
b background: Color random.
b addEventHandlerOn: BlClickEvent do: [ :e | Transcript crShow: 'Hello' ].
b openInSpace
If we click several times quickly, only one click out of two is taken into account.
We need a way to take every click into account.
Example :