bPlatformDeleteIsBackspace
bPlatformDeleteIsBackspace
#Overview
name: bPlatformDeleteIsBackspace
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/Mac/BaseMacInput.ini:8, section: [MacInput]
- INI Section:
MacInput
- Raw value:
true
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/InputCore/Private/Mac/MacPlatformInput.cpp:86
Scope (from outer to inner):
file
function FKey FMacPlatformInput::GetPlatformDeleteKey
Source code excerpt:
// The legacy behavior is that Platform Delete is "Backspace". In 5.4 we added this option to have it
// be the normal "Delete" key.
bool bPlatformDeleteIsBackspace = true;
if (GConfig)
{
GConfig->GetBool(TEXT("MacInput"), TEXT("bPlatformDeleteIsBackspace"), bPlatformDeleteIsBackspace, GInputIni);
}
return bPlatformDeleteIsBackspace ? EKeys::BackSpace : EKeys::Delete;
}