Skip to content

Commit b198ccb

Browse files
authored
fix: Use textColor instead of blackColor in RNCPicker MacOS (#413)
1 parent 5bfcd87 commit b198ccb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macos/RNCPicker.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ @implementation RNCPicker
1919
- (instancetype)initWithFrame:(CGRect)frame
2020
{
2121
if ((self = [super initWithFrame:frame pullsDown:false])) {
22-
_color = [NSColor blackColor];
22+
_color = [NSColor textColor];
2323
_customFont = [NSFont systemFontOfSize:14];
2424
_selectedIndex = NSNotFound;
2525
_textAlign = NSTextAlignmentCenter;

0 commit comments

Comments
 (0)