Skip to content

Commit

Permalink
[edit] fixed tabItem individual background color after first deselection
Browse files Browse the repository at this point in the history
(background color was set to transparent after deselection even if i set a custom color)
  • Loading branch information
David-Drechsel-ewerk committed Jan 17, 2014
1 parent e4b7d87 commit 063c793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RKTabView/RKTabView.m
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ - (void)setTabContent:(UIControl *)tab withTabItem:(RKTabItem *)tabItem {
tab.backgroundColor = self.enabledTabBackgrondColor;
}
} else {
tab.backgroundColor = [UIColor clearColor];
tab.backgroundColor = tabItem.backgroundColor;
}
}

Expand Down

0 comments on commit 063c793

Please sign in to comment.