commit e3db9954f17e70d9bc1a49c718da4fe6bada6a7a
parent d1cbf74840dbc30ef3f9fcf7b747de69ae8599b1
Author: William Casarin <jb55@jb55.com>
Date: Tue, 27 Dec 2022 14:39:06 -0800
thread: fix fonts up a bit
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/damus/Views/EventView.swift b/damus/Views/EventView.swift
@@ -46,13 +46,13 @@ enum EventViewKind {
func eventviewsize_to_font(_ size: EventViewKind) -> Font {
switch size {
case .small:
- return .caption
+ return .body
case .normal:
return .body
case .big:
return .headline
case .selected:
- return .headline
+ return .custom("selected", size: 21.0)
}
}