1
0
Fork 0

For #11182: Explicitly clone select tabs on updating SaveCollectionStep.

master
mcarare 2020-06-03 18:45:09 +03:00 committed by Emily Kager
parent 68286d263a
commit 29f1800021
1 changed files with 5 additions and 3 deletions

View File

@ -131,10 +131,12 @@ class CollectionCreationView(
}
}
selectTabsConstraints.clone(collection_constraint_layout)
selectTabsConstraints.applyTo(collection_constraint_layout)
selectTabsConstraints.clone(
containerView.context,
R.layout.component_collection_creation
)
collectionCreationTabListAdapter.updateData(state.tabs, state.selectedTabs)
selectTabsConstraints.applyTo(collection_constraint_layout)
}
private fun updateForSelectCollection() {