// Copyright Epic Games, Inc. All Rights Reserved. #include "SkeletonTreeItem.h" #include "SSkeletonTreeRow.h" TSharedRef FSkeletonTreeItem::MakeTreeRowWidget(const TSharedRef& InOwnerTable, const TAttribute& InFilterText) { return SNew(SSkeletonTreeRow, InOwnerTable) .FilterText(InFilterText) .Item(SharedThis(this)) .OnDraggingItem(this, &FSkeletonTreeItem::OnDragDetected); }