Browse Source

Remove hardcoded title.fontSize to reset to defaults (#3080)

Dima Loktev 6 years ago
parent
commit
0d41a06c73
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/ios/RNNTitleOptions.m

+ 1
- 1
lib/ios/RNNTitleOptions.m View File

43
 }
43
 }
44
 
44
 
45
 - (NSNumber *)fontSize {
45
 - (NSNumber *)fontSize {
46
-	return _fontSize ? _fontSize : @(20);
46
+	return _fontSize ? _fontSize : nil;
47
 }
47
 }
48
 
48
 
49
 @end
49
 @end