fixed handling global animation key event actions multiple times
authorHolger Schemel <info@artsoft.org>
Thu, 21 Mar 2019 22:36:36 +0000 (23:36 +0100)
committerHolger Schemel <info@artsoft.org>
Thu, 21 Mar 2019 22:36:36 +0000 (23:36 +0100)
commitda0b032a906bd0fdadf798802c04c9084bee074c
tree3710f785dd3582f86a35d97287c99b52fbfd29ee
parentc38790fcee093efb156366bb4a02dbde55085ca4
fixed handling global animation key event actions multiple times

When checking key events for triggering global animations, all keys
that are not handled as "click" events for the "any" animation event
were effectively treated like a "released button" event, which did
not have an effect if no mouse button was pressed at the same time.

However, when clicking on "clickable" global animations (those that
have a "click" animation event defined) with key event actions (that
will cause a simulated key press and release event), any key press
event that is not recognized as a "click" event will again be treated
like a "released button" event, causing the "button is pressed" state
in "HandleGlobalAnimClicks()" to be changed to "not pressed anymore",
so the still pressed mouse button will cause another "press event" in
"HandleGlobalAnimClicks()" right away, which will result in multiple
key events instead of one single key event. This may cause unexpected
and unwanted behaviour when handling global animation events.

This problem is fixed by only handling those key events for global
animations that will be handled as "click" events.
src/events.c