Files
UnrealEngineUWP/Engine/Source/Editor/AudioEditor/Private/SoundClassEditorCommands.cpp
aaron mcleran 1338e81e1b Fixing up sound class editor tooltip
#jira UE-112284
#rb trivial

#ROBOMERGE-AUTHOR: aaron.mcleran
#ROBOMERGE-SOURCE: CL 18426371 in //UE5/Release-5.0/... via CL 18426388
#ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v897-18405271)

[CL 18426401 by aaron mcleran in ue5-release-engine-test branch]
2021-12-09 17:58:17 -05:00

14 lines
489 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SoundClassEditorCommands.h"
#define LOCTEXT_NAMESPACE "SoundClassEditorCommands"
void FSoundClassEditorCommands::RegisterCommands()
{
UI_COMMAND(ToggleSolo, "Solo", "Toggles Soloing this sound class", EUserInterfaceActionType::ToggleButton, FInputChord(EKeys::S));
UI_COMMAND(ToggleMute, "Mute", "Toggles Muting this sound class", EUserInterfaceActionType::ToggleButton, FInputChord(EKeys::M));
}
#undef LOCTEXT_NAMESPACE