Bug? MouseReleased event

PdeG

Member
Licensed User
Longtime User
Hi all,

on a form I have a button that uses the mouseReleased event
B4X:
Private Sub Button_MouseReleased (EventData As MouseEvent)
    Log("Button_MouseReleased")
End Sub
but if the mouse button is released and the mouse cursor is no longer "hanging" over the button, the mouseRelease event is still executed, this is not the default behavior.
If the mouse button is released not above the button, nothing should happen.
 
Top