Merge branch 'bugfix/typo_alignmnt' into 'develop'

wrong key fix

See merge request BPHV_MIPS/mvm_core_ui!488
This commit is contained in:
Pfeil, Scott Robert 2020-06-10 09:20:54 -04:00
commit a3cf9ea1aa

View File

@ -57,7 +57,7 @@ open class MoleculeStackTemplate: ThreeLayerViewController, TemplateProtocol {
moleculeStackModel.useStackSpacingBeforeFirstItem = true
for stackItem in moleculeStackModel.molecules {
guard let stackItem = stackItem as? MoleculeStackItemModel,
stackItem.horizontalAlignment == nil else { continue }
stackItem.useHorizontalMargins == nil else { continue }
stackItem.useHorizontalMargins = true
}
stack.set(with: moleculeStackModel, delegateObject() as? MVMCoreUIDelegateObject, nil)