You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-134962 #rb trivial #preflight 61bb594abd7d5fe54ec57d8e [CL 18475878 by aditya ravichandran in ue5-main branch]
14 lines
506 B
C++
14 lines
506 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Framework/Docking/TabCommands.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "TabCommands"
|
|
|
|
void FTabCommands::RegisterCommands()
|
|
{
|
|
UI_COMMAND(CloseMajorTab, "Close Major Tab", "Closes the focused major tab", EUserInterfaceActionType::Button, FInputChord(EModifierKey::Control, EKeys::W))
|
|
UI_COMMAND(CloseMinorTab, "Close Minor Tab", "Closes the current window's active minor tab", EUserInterfaceActionType::Button, FInputChord())
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|