Explorar el Código

Fix topBar buttons iconsInsets

yogevbd hace 5 años
padre
commit
e2dcef9d4a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      lib/ios/RNNButtonOptions.m

+ 1
- 1
lib/ios/RNNButtonOptions.m Ver fichero

@@ -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