Custom Cursor and Web browser widget issue

To remove the hand pointer after closing the browser, you can call this custom function

void UProjectBlueprintFunctionLibrary::SetTypeShape()
{
	if (ICursor* Cursor = FSlateApplication::Get().GetPlatformCursor().Get())
	{
		Cursor->SetTypeShape(EMouseCursor::Custom, nullptr);
	}
}
1 Like