Cog/Utils/MonospacedDigitTextFieldCell.m
Jan Weiß 0a94b62b06 Implement and use MonospacedDigitTextFieldCell.
This way the digits of numbers in playlist columns consisting of mostly digits will be aligned vertically.
2021-05-06 17:19:39 +02:00

23 lines
496 B
Objective-C

//
// MonospacedDigitTextFieldCell.m
// Cog
//
// Created by Jan on 04.05.21.
//
#import "MonospacedDigitTextFieldCell.h"
@implementation MonospacedDigitTextFieldCell
- (void)setFont:(NSFont *)font
{
CGFloat size = font.pointSize;
NSNumber *weightNum = [font.fontDescriptor objectForKey:NSFontWeightTrait];
NSFontWeight weight = weightNum ? weightNum.doubleValue : NSFontWeightRegular;
super.font = [NSFont monospacedDigitSystemFontOfSize:size
weight:weight];
}
@end