bShowTransactionDetails
bShowTransactionDetails
#Overview
name: bShowTransactionDetails
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 2
C++ source files.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEditorPerProjectUserSettings.ini:959, section: [/Script/UndoHistory.UndoHistorySettings]
- INI Section:
/Script/UndoHistory.UndoHistorySettings
- Raw value:
false
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Editor/UndoHistoryEditor/Private/UndoHistorySettings.h:19
Scope (from outer to inner):
file
class class UUndoHistorySettings : public UObject
Source code excerpt:
/** True when the UndoHistory is showing transaction details. */
UPROPERTY(config)
bool bShowTransactionDetails;
};
#Loc: <Workspace>/Engine/Source/Editor/UndoHistoryEditor/Private/Widgets/SUndoHistory.cpp:528
Scope (from outer to inner):
file
function void SUndoHistory::ToggleShowTransactionDetails
Source code excerpt:
UUndoHistorySettings* Settings = GetMutableDefault<UUndoHistorySettings>();
Settings->bShowTransactionDetails = bEnableFlag;
}
bool SUndoHistory::IsShowingTransactionDetails() const
{
return GetDefault<UUndoHistorySettings>()->bShowTransactionDetails;
}
#undef LOCTEXT_NAMESPACE