Widget Construction/Alignment Problem

When my Menu first starts my widgets are aligned as expected. However, when I leave and return to the Menu the text are concatenated. If I reload the Menu level, returning from a game for example, it works fine for the first time. Going into and exiting from sub-menus appear to be giving me a problem.

On my Menu I have a title bar, and a scrollbox that I need to recreate when entering the Menu. The widgets consist of UScrollbox, UHorizontalBox, UCanvasPanel, UTextBlock, UImage, etc.

On a different screen, where the controls are added to the scrollbox using a top level panel (UCanvasPanel), that is, one panel per row, it works as expected. In fact, my Menu originally employed the same technique and worked perfectly except some text was being truncated.

Since working with UE4 and the widgets, I have moved to starting with horizontal boxes (UHorizontalBox) as the top widget for the scrollbox row, then nesting additional horizontal boxes for better control and positioning. And it appears to work well, with the exception of the problem that I’m having.

During construction I use myWidget->ClearChildren(), then build up the control. I’ve tried adding the myWidget->ForceLayoutPrepass() too but that didn’t help. Not sure that it’s a deleting widget issue.

I’ve tried many different gyrations to correct the problem but no luck thus far. Has anyone else encountered a similar problem?

Thank you.