Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hakobast committed Feb 19, 2018
1 parent 5e788e5 commit 2eb780f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class DropdownTextView : LinearLayout {
}

private fun setArrowViewState(expand: Boolean, animate: Boolean) {
var angle = if (resources.configuration.layoutDirection == View.LAYOUT_DIRECTION_RTL) {
val angle = if (resources.configuration.layoutDirection == View.LAYOUT_DIRECTION_RTL) {
if (expand) 90.0f else 180.0f
}else{
if (expand) 90.0f else 0.0f
Expand Down

0 comments on commit 2eb780f

Please sign in to comment.