ContextMenu.WholeMatchWeightMultiplier
ContextMenu.WholeMatchWeightMultiplier
#Overview
name: ContextMenu.WholeMatchWeightMultiplier
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The multiplier given if there is an exact match to the search term
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/EdGraph/EdGraphSchema.cpp:941
Scope (from outer to inner):
file
namespace ContextMenuConsoleVariables
Source code excerpt:
static float WholeMatchWeightMultiplier = 2.0f;
static FAutoConsoleVariableRef CVarWholeMatchWeightMultiplier(
TEXT("ContextMenu.WholeMatchWeightMultiplier"), WholeMatchWeightMultiplier,
TEXT("The multiplier given if there is an exact match to the search term"),
ECVF_Default);
/** Increasing this will prefer whole percentage matches when comparing the keyword to what the user has typed in */
static float PercentageMatchWeightMultiplier = 1.0f;
static FAutoConsoleVariableRef CVarPercentageMatchWeightMultiplier(