Hi ,
I would like to see this piece of handy code in the future releases for all the Slate Panels , like Scrollbox , canvas , horizontalbox , etc, so that user can insert a slot at a custom location. Is it possible ? where to submit this code?
SScrollBox::FSlot& SScrollBox::InsertSlot(int32 Index)
{
SScrollBox::FSlot& NewSlot = SScrollBox::Slot();
ScrollPanel->Children.Insert(&NewSlot , Index);
return NewSlot;
}