Respond to CR.

// FREEBIE
This commit is contained in:
Matthew Chen 2017-01-30 18:27:52 -05:00
parent e947276f73
commit b5aab60985

View file

@ -183,7 +183,7 @@ class CallViewController: UIViewController, CallObserver, CallServiceObserver, R
contactNameLabel = UILabel()
contactNameLabel.font = UIFont.ows_lightFont(withSize:ScaleFromIPhone5To7Plus(32, 40))
contactNameLabel.textColor = UIColor.white
contactNameLabel.layer.shadowOffset = CGSize(width: 0, height: 0)
contactNameLabel.layer.shadowOffset = CGSize.zero
contactNameLabel.layer.shadowOpacity = 0.35
contactNameLabel.layer.shadowRadius = 4
self.view.addSubview(contactNameLabel)
@ -191,7 +191,7 @@ class CallViewController: UIViewController, CallObserver, CallServiceObserver, R
callStatusLabel = UILabel()
callStatusLabel.font = UIFont.ows_regularFont(withSize:ScaleFromIPhone5To7Plus(19, 25))
callStatusLabel.textColor = UIColor.white
callStatusLabel.layer.shadowOffset = CGSize(width: 0, height: 0)
callStatusLabel.layer.shadowOffset = CGSize.zero
callStatusLabel.layer.shadowOpacity = 0.35
callStatusLabel.layer.shadowRadius = 4
self.view.addSubview(callStatusLabel)