I have a UserWidget (A) that contains another a Button and a UserWidget (B). That UserWidget (B) contains a Button (this is simplified and for a reason). Button in UserWidget (A) works on click and Button in UserWidget (B) works on click however on hover it flickers so on click is very finicky. I dont have an tick events that I know of, I only have an added dynamic for the button in c++ to run a function on click. All Widgets above and around are Not Hit-Test except for each Button. Help.
For whatever reason, having it left/center/right justified in a Horizontal/Vertical/Universal Grid will make this happen. Having Filled will not have this happen. What setting am I missing?
I’ve had this happen to me when I’ve made my [Details > Appearance > Style > Hovered > Image Size] larger than my [Details > Appearance > Style > Normal> Image Size]
Every frame, it senses your mouse hovered over the button, then it shrinks to the smaller hovered size. Once it shrinks on the next frame, your mouse is no longer over it and it returns to its larger size.
SOLVED!!
Hey, dont know if its worty yet but I solutioned that issue (might a). When you hover the button another widget pops up right? Under the mouse cursor, right? When this new widget pops up, it triggrers the button on unhovered event making the new widget close, since the mouse still over the button, it triggers the button hover event again, and it cicles very fast making the flickering occours.
I got it making a tool tip. solved by going on the tool tip widget root and setting the: VISIBILITY: Not hit testable (self & all children).