User created Widget, expose on spawn/construct?

I believe your inner widget is getting PreConstruct->Construct calls before your outer widget (which you should be able to verify by toggling breakpoints). I’d suggest you to turn the Construct part of your inner widget (setting button visibility) into a function with a bool parameter, and call it from the outer widget’s PreConstruct or Construct.

For now I’ve gone with a Custom Event that I can use on “Construct” which works fine. Thanks.

1 Like