You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
UE-7990 - Fixed with a decent Slate widget.
[CL 2420847 by Richard Hinckley in Main branch]
This commit is contained in:
@@ -29,6 +29,18 @@ void STutorialRoot::Construct(const FArguments& InArgs)
|
||||
];
|
||||
}
|
||||
|
||||
void STutorialRoot::AttachWidget(TSharedPtr<SWidget> Widget)
|
||||
{
|
||||
//This checkSlow is just here to ensure we know what we're doing
|
||||
checkSlow(ChildSlot.GetWidget() == SNullWidget::NullWidget);
|
||||
ChildSlot.AttachWidget(Widget.ToSharedRef());
|
||||
}
|
||||
|
||||
void STutorialRoot::DetachWidget()
|
||||
{
|
||||
ChildSlot.DetachWidget();
|
||||
}
|
||||
|
||||
void STutorialRoot::MaybeAddOverlay(TSharedRef<SWindow> InWindow)
|
||||
{
|
||||
if(InWindow->HasOverlay())
|
||||
|
||||
Reference in New Issue
Block a user