Button style=link triggers no events #21
Labels
No Label
Bug
Enhancement
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: IWMBrowser/iwmlib#21
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Sometimes no events are fired at a button when the style is set to "link". style: link sets the following values:
strokeAlpha: 0.000000001
strokeActiveAlpha: 0.00000000001
fillAlpha: 0.000000001
fillActiveAlpha: 0.000000001
Probably by overlaying the transparent button with other transparent areas the alpha value becomes too small and reaches rounded 0. Pixi doesn't fire events if alpha is 0, hence the workaround with the very small numbers.
See button.js line 116 and 177 ff.