1
0
Fork 0

For #11182: Set click listener also to icon button.

master
mcarare 2020-06-04 17:22:08 +03:00 committed by Emily Kager
parent e535ac753c
commit a910698007
2 changed files with 4 additions and 0 deletions

View File

@ -90,6 +90,7 @@ class CollectionCreationBottomBarView(
setImageDrawable(drawable)
contentDescription = null
importantForAccessibility = View.IMPORTANT_FOR_ACCESSIBILITY_NO
setOnClickListener { interactor.addNewCollection() }
}
layout.setOnClickListener { interactor.addNewCollection() }
}

View File

@ -74,6 +74,9 @@ class CollectionCreationBottomBarViewTest {
layout.performClick()
verify { interactor.addNewCollection() }
iconButton.performClick()
verify { interactor.addNewCollection() }
}
@Test