Skip to content

Commit

Permalink
Fix cropped text in macOS Big Sur status bar
Browse files Browse the repository at this point in the history
This fixes the cropped out text when the "multiline" option is selected  (issue hholtmann#109).
  • Loading branch information
johnothwolo authored Sep 7, 2020
1 parent 875c68b commit 094cf1f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Classes/FanControl.m
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,11 @@ -(void) readFanData:(id)caller{
[paragraphStyle setAlignment:NSLeftTextAlignment];
[s_status addAttribute:NSFontAttributeName value:[NSFont fontWithName:@"Lucida Grande" size:fsize] range:NSMakeRange(0,[s_status length])];
[s_status addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0,[s_status length])];

[s_status addAttribute:NSBaselineOffsetAttributeName
value:[NSNumber numberWithFloat: -6]
range:NSMakeRange(0, s_status.length)];

[s_status addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0,[s_status length])];
if (setColor) [s_status addAttribute:NSForegroundColorAttributeName value:menuColor range:NSMakeRange(0,[s_status length])];


Expand Down

0 comments on commit 094cf1f

Please sign in to comment.