[fenix] Closes https://github.com/mozilla-mobile/fenix/issues/3428 - Make + in collection creation selection stage clickable

pull/600/head
Emily Kager 5 years ago committed by Emily Kager
parent 28045ff3ae
commit f0a4abd91d

@ -205,7 +205,9 @@ class CollectionCreationUIView(
val drawable = view.context.getDrawable(R.drawable.ic_new)
drawable?.setTint(ContextCompat.getColor(view.context, R.color.photonWhite))
view.bottom_bar_icon_button.setImageDrawable(drawable)
view.bottom_bar_icon_button.setOnClickListener(null)
view.bottom_bar_icon_button.setOnClickListener {
actionEmitter.onNext(CollectionCreationAction.AddNewCollection)
}
view.bottom_button_bar_layout.isClickable = true
view.bottom_button_bar_layout.setOnClickListener {

Loading…
Cancel
Save