|
@@ -52,7 +52,7 @@ public class StyleParamsParser {
|
52
|
52
|
result.selectedTopTabTextColor = getColor("selectedTopTabTextColor", getDefaultSelectedTopTabTextColor());
|
53
|
53
|
result.selectedTopTabIndicatorHeight = getInt("selectedTopTabIndicatorHeight", getDefaultSelectedTopTabIndicatorHeight());
|
54
|
54
|
result.selectedTopTabIndicatorColor = getColor("selectedTopTabIndicatorColor", getDefaultSelectedTopTabIndicatorColor());
|
55
|
|
- result.topTabScrollable = getBoolean("topTabScrollable", getDefaultTopTabScrollable());
|
|
55
|
+ result.topTabsScrollable = getBoolean("topTabsScrollable", getDefaultTopTabsScrollable());
|
56
|
56
|
|
57
|
57
|
result.screenBackgroundColor = getColor("screenBackgroundColor", getDefaultScreenBackgroundColor());
|
58
|
58
|
|
|
@@ -175,8 +175,8 @@ public class StyleParamsParser {
|
175
|
175
|
return AppStyle.appStyle == null ? new StyleParams.Color() : AppStyle.appStyle.topTabTextColor;
|
176
|
176
|
}
|
177
|
177
|
|
178
|
|
- private boolean getDefaultTopTabScrollable() {
|
179
|
|
- return AppStyle.appStyle != null && AppStyle.appStyle.topTabScrollable;
|
|
178
|
+ private boolean getDefaultTopTabsScrollable() {
|
|
179
|
+ return AppStyle.appStyle != null && AppStyle.appStyle.topTabsScrollable;
|
180
|
180
|
}
|
181
|
181
|
|
182
|
182
|
private StyleParams.Color getDefaultTopTabIconColor() {
|