Преглед изворни кода

Fix topBar buttons iconsInsets

yogevbd пре 5 година
родитељ
комит
e2dcef9d4a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      lib/ios/RNNButtonOptions.m

+ 1
- 1
lib/ios/RNNButtonOptions.m Прегледај датотеку

@@ -11,7 +11,7 @@
11 11
 	self.color = [ColorParser parse:dict key:@"color"];
12 12
 	self.disabledColor = [ColorParser parse:dict key:@"disabledColor"];
13 13
 	self.icon = [ImageParser parse:dict key:@"icon"];
14
-	self.iconInsets = [[RNNInsetsOptions alloc] initWithDict:dict];
14
+	self.iconInsets = [[RNNInsetsOptions alloc] initWithDict:dict[@"iconInsets"]];
15 15
 	self.enabled = [BoolParser parse:dict key:@"enabled"];
16 16
 	
17 17