Horizontal scroll container Cutout

Godot Version

v4.4.1.stable.official [49a5bc7b6]

Question

As you can see in the video and the screenshot below on the left i have a scroll container with a horizontal box container with multiple child margin container nodes to be scrolled over, as you can see the scrolling is working as expected, but for the life in me i can’t figure out why when i reach the end of the scroll (as in the screenshot) the last (scrolled node) is cut and not shown entirely, what am I doing wrong?

I suggest that you move your HBoxContainer outside of the ScrollContainer to see what it looks like in its whole. It will make it easier for you to debug too.
My guess is that some of the last children of the HBoxContainer have 0 width, and is truncating the last levels.

You are correct when i moved the HBoxContainer outside the last child was truncated, when i increase the Transform.Size in the right they appear, but when i move the item back under the ScrollContainer the size is reverted back to the old value which truncates the last item, how can I increase it?

Try adjusting the custom minimum size instead of the actual size