|
@@ -31,7 +31,6 @@ public class StyleParamsParser {
|
31
|
31
|
|
32
|
32
|
result.topTabTextColor = getColor("topTabTextColor", getDefaultTopTabTextColor());
|
33
|
33
|
result.selectedTopTabTextColor = getColor("selectedTopTabTextColor", getDefaultSelectedTopTabTextColor());
|
34
|
|
- result.selectedTopTabColor = getColor("selectedTopTabColor", getDefaultSelectedTopTabColor());
|
35
|
34
|
result.selectedTopTabIndicatorHeight = getInt("selectedTopTabIndicatorHeight", getDefaultSelectedTopTabIndicatorHeight());
|
36
|
35
|
result.selectedTopTabIndicatorColor = getColor("selectedTopTabIndicatorColor", getDefaultSelectedTopTabIndicatorColor());
|
37
|
36
|
|
|
@@ -60,10 +59,6 @@ public class StyleParamsParser {
|
60
|
59
|
return AppStyle.appStyle == null ? -1 : AppStyle.appStyle.selectedTopTabIndicatorHeight;
|
61
|
60
|
}
|
62
|
61
|
|
63
|
|
- private StyleParams.Color getDefaultSelectedTopTabColor() {
|
64
|
|
- return AppStyle.appStyle == null ? new StyleParams.Color() : AppStyle.appStyle.selectedTopTabColor;
|
65
|
|
- }
|
66
|
|
-
|
67
|
62
|
private StyleParams.Color getDefaultSelectedTopTabTextColor() {
|
68
|
63
|
return AppStyle.appStyle == null ? new StyleParams.Color() : AppStyle.appStyle.selectedTopTabTextColor;
|
69
|
64
|
}
|