Code: Select all
1. mouseDown injected into System
2. mouseUpInjected into System
3. MouseButtonUp Event generated
4. handler consumes MouseButtonUp
5. Timer checked, MouseClick Event generated
6. -> MouseClick not consumed
7. -> System returns event not consumed
Ie. Even if the event handler consumed the raw event, System indicates that the event wasn't consumed. Is this by purpose and if yes, what is the reasoning?