Merge branch 'mbruce/bugfixes' into 'develop'

added layoutsubviews to call setNeedsUpdate

See merge request BPHV_MIPS/vds_ios!164
This commit is contained in:
Bruce, Matt R 2024-03-01 16:15:26 +00:00
commit 496f2da94b
2 changed files with 9 additions and 0 deletions

View File

@ -132,4 +132,8 @@ open class Control: UIControl, ViewProtocol, UserInfoable, Clickable {
return true
}
open override func layoutSubviews() {
super.layoutSubviews()
setNeedsUpdate()
}
}

View File

@ -86,4 +86,9 @@ open class View: UIView, ViewProtocol, UserInfoable {
isEnabled = true
}
open override func layoutSubviews() {
super.layoutSubviews()
setNeedsUpdate()
}
}