Fixing up some style fallout from the FAutomationWindowStyle creation

#jira UE-159028
#rb trivial
#preflight skip
#rnx

[CL 21097973 by Lauren Barnes in ue5-main branch]
This commit is contained in:
Lauren Barnes
2022-07-14 16:07:22 -04:00
parent 703284f2c7
commit 42ee8ee6fa
2 changed files with 6 additions and 5 deletions

View File

@@ -7,6 +7,7 @@
#include "Widgets/Text/STextBlock.h"
#include "Widgets/Layout/SGridPanel.h"
#include "Styling/AppStyle.h"
#include "AutomationWindowStyle.h"
#define LOCTEXT_NAMESPACE "SAutomationGraphicalResultBox"
@@ -166,7 +167,7 @@ void SAutomationGraphicalResultBox::CreateWidgets()
.Padding( FMargin(1,3) )
[
SNew(STextBlock)
.TextStyle( FAppStyle::Get(), "Automation.ReportHeader" )
.TextStyle(FAutomationWindowStyle::Get(), "Automation.ReportHeader" )
.Text(FText::Format(LOCTEXT("AutomationGraphicalClusterHeader", "{Name} - {NumTests} Tests / {NumFails} Fails / {TotalTime} Seconds (Total) / {ParallelTime} Seconds (Parallel)"), ClusterArgs))
];