Files
UnrealEngineUWP/Engine/Source/Editor/Persona/Private/AnimViewportToolBarToolMenuContext.h
alex mcadams 64a958513f Fix bugs related to updating SAnimViewportToolBar to use UToolsMenu.
I was passing in "this" to lambdas when registering the new menus when I should have been using a context instead.

#preflight 644aecdcb208f61af8397b89

[CL 25240325 by alex mcadams in ue5-main branch]
2023-04-28 16:40:45 -04:00

18 lines
338 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "AnimViewportToolBarToolMenuContext.generated.h"
class SAnimViewportToolBar;
UCLASS()
class UAnimViewportToolBarToolMenuContext : public UObject
{
GENERATED_BODY()
public:
TWeakPtr<const SAnimViewportToolBar> AnimViewportToolBar;
};