Digital ACT-191 CXTDT-568419 defect: Calendar - When hideContainerBorder=true, corner radius disappears

This commit is contained in:
vasavk 2024-06-07 17:35:28 +05:30
parent 2bb1a24d72
commit c02ed37121
2 changed files with 2 additions and 2 deletions

View File

@ -165,14 +165,13 @@ open class CalendarBase: Control, Changeable {
} }
containerView.layer.backgroundColor = backgroundColorConfiguration.getColor(self).cgColor containerView.layer.backgroundColor = backgroundColorConfiguration.getColor(self).cgColor
containerView.layer.cornerRadius = VDSFormControls.borderRadius
if hideContainerBorder { if hideContainerBorder {
containerView.layer.borderColor = nil containerView.layer.borderColor = nil
containerView.layer.borderWidth = 0 containerView.layer.borderWidth = 0
containerView.layer.cornerRadius = 0
} else { } else {
containerView.layer.borderColor = containerBorderColorConfiguration.getColor(self).cgColor containerView.layer.borderColor = containerBorderColorConfiguration.getColor(self).cgColor
containerView.layer.borderWidth = VDSFormControls.borderWidth containerView.layer.borderWidth = VDSFormControls.borderWidth
containerView.layer.cornerRadius = VDSFormControls.borderRadius
} }
} }

View File

@ -11,6 +11,7 @@
- CXTDT-568398 - Calendar - Saturday missing (on smaller screen size devices) - CXTDT-568398 - Calendar - Saturday missing (on smaller screen size devices)
- CXTDT-568402 - Calendar - Extra row (on smaller screen size devices) - CXTDT-568402 - Calendar - Extra row (on smaller screen size devices)
- CXTDT-568409 - Calendar - Width control missing - CXTDT-568409 - Calendar - Width control missing
- CXTDT-568419 - Calendar - When hideContainerBorder=true, corner radius disappears
1.0.65 1.0.65
---------------- ----------------