diff --git a/macosx/PeerProgressIndicatorCell.m b/macosx/PeerProgressIndicatorCell.m index 4ecf87a66..bbfff633b 100644 --- a/macosx/PeerProgressIndicatorCell.m +++ b/macosx/PeerProgressIndicatorCell.m @@ -48,8 +48,9 @@ NSMutableParagraphStyle * paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy]; [paragraphStyle setAlignment: NSRightTextAlignment]; - fAttributes = [[NSDictionary alloc] initWithObjects: @[[NSFont systemFontOfSize: 11.0], paragraphStyle] - forKeys: @[NSFontAttributeName, NSParagraphStyleAttributeName]]; + fAttributes = @{NSFontAttributeName: [NSFont systemFontOfSize: 11.0], + NSForegroundColorAttributeName: NSColor.labelColor, + NSParagraphStyleAttributeName: paragraphStyle}; } [[NSString percentString: [self floatValue] longDecimals: NO] drawInRect: cellFrame withAttributes: fAttributes];