color the icons in a consistent way with other icons

This commit is contained in:
Tibor Kaputa 2022-06-15 17:38:56 +02:00 committed by GitHub
parent 1a05a56771
commit 280e854e36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -238,8 +238,8 @@ class CallActivity : SimpleActivity() {
startArrowAnimation(call_right_arrow, initialRightArrowX, initialRightArrowScaleX, initialRightArrowScaleY, rightArrowTranslation)
}
call_draggable.drawable.mutate().setTint(getProperTextColor())
call_draggable_background.drawable.mutate().setTint(getProperTextColor())
call_draggable.applyColorFilter(getProperTextColor())
call_draggable_background.drawable.applyColorFilter(getProperTextColor())
var lock = false
call_draggable.setOnTouchListener { v, event ->
@ -258,7 +258,7 @@ class CallActivity : SimpleActivity() {
call_draggable_background.animate().alpha(0.2f)
}
call_draggable.setImageDrawable(getDrawable(R.drawable.ic_phone_down_vector))
call_draggable.drawable.mutate().setTint(getProperTextColor())
call_draggable.drawable.applyColorFilter(getProperTextColor())
call_left_arrow.animate().alpha(1f)
call_right_arrow.animate().alpha(1f)
stopAnimation = false