From 0da5660c6e6e3ebb26415d71364fd5a57e54f549 Mon Sep 17 00:00:00 2001 From: Gary Elshaw <69029666+GaryElshaw@users.noreply.github.com> Date: Wed, 10 Aug 2022 01:15:52 +1200 Subject: [PATCH] Increase font size of TrackerCell from 9 to 9.5 (#3571) --- macosx/TrackerCell.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/TrackerCell.mm b/macosx/TrackerCell.mm index b8243b6c1..4625e5760 100644 --- a/macosx/TrackerCell.mm +++ b/macosx/TrackerCell.mm @@ -66,7 +66,7 @@ NSMutableSet* fTrackerIconLoading; initWithObjectsAndKeys:[NSFont messageFontOfSize:12.0], NSFontAttributeName, paragraphStyle, NSParagraphStyleAttributeName, nil]; _fStatusAttributes = [[NSMutableDictionary alloc] - initWithObjectsAndKeys:[NSFont messageFontOfSize:9.0], NSFontAttributeName, paragraphStyle, NSParagraphStyleAttributeName, nil]; + initWithObjectsAndKeys:[NSFont messageFontOfSize:9.5], NSFontAttributeName, paragraphStyle, NSParagraphStyleAttributeName, nil]; } return self; }