This way the digits of numbers in playlist columns consisting of mostly digits will be aligned vertically.
18 lines
228 B
Objective-C
18 lines
228 B
Objective-C
//
|
|
// MonospacedDigitTextFieldCell.h
|
|
// Cog
|
|
//
|
|
// Created by Jan on 04.05.21.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MonospacedDigitTextFieldCell : NSTextFieldCell {
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|