Commit 2c066ca6 by Daniel Dahan

development: issue-583: fixed issue where detail label was not being displayed…

development: issue-583: fixed issue where detail label was not being displayed unless set explicity upon creation time
parent cb15ef05
...@@ -180,6 +180,7 @@ open class TextField: UITextField { ...@@ -180,6 +180,7 @@ open class TextField: UITextField {
} }
set(value) { set(value) {
placeholderLabel.text = value placeholderLabel.text = value
layoutSubviews()
} }
} }
...@@ -219,6 +220,7 @@ open class TextField: UITextField { ...@@ -219,6 +220,7 @@ open class TextField: UITextField {
} }
set(value) { set(value) {
detailLabel.text = value detailLabel.text = value
layoutSubviews()
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment