on mouse button up issue

Hello,

I have the following problem:

I have overwritten the function “onmousebuttonup”(i set it up to detect the left mouse button) for a specific image widget,
but when I release the left mouse button over the widget then nothing happens.
Only once I double click on the widget something happens.

I have added an image showing what I have done.

Can anyone tell me why that happens and how to fix it?

Thanks!

1 Like

I might be wrong but I think some of the input overrides aren’t working anymore. Can’t remember which ones are broken though.

1 Like

this bug still exists. “on mouse up” is treated as “on double click” @epicgames

image

What are you doing differently?


I have overwritten the function “onmousebuttonup”(i set it up to detect the left mouse button) for a specific image widget,

I bet OP forgot to handle on mouse down - you can’t have on mouse up if the button was never pressed over the widget in the first place. Unless you do perform hacky Precise Clicks with buttons, that is.

2 Likes

Thanks! Had some branches that didnt end up at a return node with handled :smiley: