void CloseParentWindow()
	{
		auto ParentWindow = WeakParentWindow.Pin();
		if (ParentWindow.IsValid())
		{
			ParentWindow->RequestDestroyWindow();
		}
	}
FReply SRenderDocPluginAboutWindow::Close()
{
	RequestDestroyWindow();
	return FReply::Handled();
}