Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Lesilva committed Apr 29, 2015
2 parents 16f6073 + ca828fe commit ea3d30b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![Banner](./screenshot/BetterSpinner Banner.jpg)

# BetterSpinner

[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-BetterSpinner-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/1707)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top,
Drawable dropdownIcon = ContextCompat.getDrawable(getContext(), R.drawable.ic_expand_more_black_18dp);
if (dropdownIcon != null) {
right = dropdownIcon;
right.setAlpha(66);
right.mutate().setAlpha(66);
}
super.setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public void setCompoundDrawablesWithIntrinsicBounds(Drawable left, Drawable top,
Drawable dropdownIcon = ContextCompat.getDrawable(getContext(), R.drawable.ic_expand_more_black_18dp);
if (dropdownIcon != null) {
right = dropdownIcon;
right.setAlpha(66);
right.mutate().setAlpha(128);
}
super.setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom);
}
Expand Down

0 comments on commit ea3d30b

Please sign in to comment.