correcting alignment func.

This commit is contained in:
Kevin G Christiano 2019-12-19 16:09:41 -05:00
parent a04399516d
commit cf41609210
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ open class CaretButton: MFCustomButton, MVMCoreUIMoleculeViewProtocol, MVMCoreUI
return true
}
open func alignment() -> UIStackView.Alignment {
open func horizontalAlignment() -> UIStackView.Alignment {
return .leading
}

View File

@ -211,6 +211,6 @@ extension CaretView: MVMCoreUIViewConstrainingProtocol {
}
open func horizontalAlignment() -> UIStackView.Alignment {
return UIStackView.Alignment.leading;
return .leading
}
}