From ad9ab55b0a67a1af1ac29672ce07d73c0e60fb92 Mon Sep 17 00:00:00 2001 From: gabi Date: Tue, 28 Jan 2014 16:18:56 +0200 Subject: [PATCH] Indicator color bug fixed; --- ICViewPager/ICViewPager/ViewPagerController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICViewPager/ICViewPager/ViewPagerController.m b/ICViewPager/ICViewPager/ViewPagerController.m index 359a6d1..8457afd 100644 --- a/ICViewPager/ICViewPager/ViewPagerController.m +++ b/ICViewPager/ICViewPager/ViewPagerController.m @@ -689,7 +689,7 @@ - (void)defaultSetup { //add ScrollIndicator and set it most left if ( nil == self.scrollInd ) { self.scrollInd = [[UIView alloc] initWithFrame:CGRectMake(36.0, CGRectGetHeight(self.tabsView.bounds) - 2.0, self.indicatorWidth, 2.0)]; - self.scrollInd.backgroundColor = [UIColor blueColor]; + self.scrollInd.backgroundColor = self.indicatorColor; [self.tabsView addSubview:self.scrollInd]; self.tabsView.bounces = NO; }