Skip to content

Commit

Permalink
Merge pull request #59 from mgalkin/issue55
Browse files Browse the repository at this point in the history
Fixed reading of selectedBold attribute. Closes issue #55
  • Loading branch information
pakerfeldt committed Jan 26, 2012
2 parents c921f47 + 45a64e7 commit 598035e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -100,7 +100,7 @@ public TitleFlowIndicator(Context context, AttributeSet attrs) {
footerLineHeight = a.getDimension(R.styleable.TitleFlowIndicator_footerLineHeight, FOOTER_LINE_HEIGHT);
footerTriangleHeight = a.getDimension(R.styleable.TitleFlowIndicator_footerTriangleHeight, FOOTER_TRIANGLE_HEIGHT);
int selectedColor = a.getColor(R.styleable.TitleFlowIndicator_selectedColor, SELECTED_COLOR);
boolean selectedBold = a.getBoolean(R.styleable.TitleFlowIndicator_selectedColor, SELECTED_BOLD);
boolean selectedBold = a.getBoolean(R.styleable.TitleFlowIndicator_selectedBold, SELECTED_BOLD);
int textColor = a.getColor(R.styleable.TitleFlowIndicator_textColor, TEXT_COLOR);
float textSize = a.getDimension(R.styleable.TitleFlowIndicator_textSize, TEXT_SIZE);
float selectedSize = a.getDimension(R.styleable.TitleFlowIndicator_selectedSize, textSize);
Expand Down

0 comments on commit 598035e

Please sign in to comment.