Skip to content

Commit 77dada1

Browse files
committed
Fix TextBlockStyle not found
1 parent e1b4799 commit 77dada1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/Linter/Private/UI/LintWizard.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void SLintWizard::Construct(const FArguments& InArgs) {
117117
.Padding(0)
118118
[
119119
SNew(STextBlock)
120-
.TextStyle(FAppStyle::Get(), "NewClassDialog.PageTitle")
120+
.Font(FAppStyle::Get().GetFontStyle("HeadingSmall"))
121121
.Text(LOCTEXT("LinterSelectionTitle", "Linter Rule Set Selection"))
122122
]
123123
// Title spacer
@@ -169,7 +169,7 @@ void SLintWizard::Construct(const FArguments& InArgs) {
169169
.Padding(0)
170170
[
171171
SNew(STextBlock)
172-
.TextStyle(FAppStyle::Get(), "NewClassDialog.PageTitle")
172+
.Font(FAppStyle::Get().GetFontStyle("HeadingSmall"))
173173
.Text(LOCTEXT("LinterReportTitle", "Lint Report"))
174174
]
175175
// Marketplace No Errors Required Text
@@ -214,7 +214,7 @@ void SLintWizard::Construct(const FArguments& InArgs) {
214214
.Padding(0)
215215
[
216216
SNew(STextBlock)
217-
.TextStyle(FAppStyle::Get(), "NewClassDialog.PageTitle")
217+
.Font(FAppStyle::Get().GetFontStyle("HeadingSmall"))
218218
.Text(LOCTEXT("MarketplaceInfoTitle", "Marketplace Recommendations"))
219219
]
220220
// Title spacer

0 commit comments

Comments
 (0)