Skip to content

Commit

Permalink
fix: Use textColor instead of blackColor in RNCPicker MacOS (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
k1mmm authored Jun 23, 2022
1 parent 5bfcd87 commit b198ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macos/RNCPicker.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ @implementation RNCPicker
- (instancetype)initWithFrame:(CGRect)frame
{
if ((self = [super initWithFrame:frame pullsDown:false])) {
_color = [NSColor blackColor];
_color = [NSColor textColor];
_customFont = [NSFont systemFontOfSize:14];
_selectedIndex = NSNotFound;
_textAlign = NSTextAlignmentCenter;
Expand Down

0 comments on commit b198ccb

Please sign in to comment.