updated for attributes

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-01-25 16:10:09 -06:00
parent 5e595e9ece
commit f25fd36e78
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ extension Tilelet {
public func toTitleLockupSubTitleModel() -> TitleLockup.SubTitleModel {
TitleLockup.SubTitleModel(text: text,
textColor: textColor,
textAttributes: nil)
textAttributes: textAttributes)
}
}
}

View File

@ -48,7 +48,7 @@ extension Tilelet {
//--------------------------------------------------
public func toTitleLockupTitleModel() -> TitleLockup.TitleModel {
TitleLockup.TitleModel(text: text,
textAttributes: nil,
textAttributes: textAttributes,
textStyle: textStyle.value)
}
}