Various story improvements

This commit is contained in:
Ilya Laktyushin
2023-06-18 18:26:12 +04:00
parent 21b76b0857
commit d968f3aca3
22 changed files with 450 additions and 135 deletions

View File

@@ -98,7 +98,7 @@ enum DrawingTextFont: Equatable, Hashable {
func uiFont(size: CGFloat) -> UIFont {
switch self {
case .sanFrancisco:
return Font.with(size: size, design: .round, weight: .semibold)
return Font.with(size: size, design: .regular, weight: .semibold)
case let .other(font, _):
return UIFont(name: font, size: size) ?? Font.semibold(size)
}