Skip to content

Commit

Permalink
Fix compile warnings in HomeActivity
Browse files Browse the repository at this point in the history
  • Loading branch information
emartynov authored and florina-muntenescu committed Jan 2, 2020
1 parent 97979b9 commit ea243c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/io/plaidapp/ui/HomeActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ class HomeActivity : AppCompatActivity() {
drawer.addDrawerListener(object : DrawerLayout.SimpleDrawerListener() {

// if the user interacts with the filters while it's open then don't auto-close
private val filtersTouch = View.OnTouchListener { v, event ->
private val filtersTouch = View.OnTouchListener { _, _ ->
drawer.removeCallbacks(closeDrawerRunnable)
false
}
Expand Down

0 comments on commit ea243c1

Please sign in to comment.