[fenix] For https://github.com/mozilla-mobile/fenix/issues/11182: Set click listener also to icon button.

pull/600/head
mcarare 4 years ago committed by Emily Kager
parent a156b36994
commit 39dde4c64c

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

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

Loading…
Cancel
Save