diff --git a/Signal/src/view controllers/CallViewController.swift b/Signal/src/view controllers/CallViewController.swift index e0f46fa0c..347ef220e 100644 --- a/Signal/src/view controllers/CallViewController.swift +++ b/Signal/src/view controllers/CallViewController.swift @@ -183,11 +183,17 @@ 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.zero + contactNameLabel.layer.shadowOpacity = 0.35 + contactNameLabel.layer.shadowRadius = 4 self.view.addSubview(contactNameLabel) callStatusLabel = UILabel() callStatusLabel.font = UIFont.ows_regularFont(withSize:ScaleFromIPhone5To7Plus(19, 25)) callStatusLabel.textColor = UIColor.white + callStatusLabel.layer.shadowOffset = CGSize.zero + callStatusLabel.layer.shadowOpacity = 0.35 + callStatusLabel.layer.shadowRadius = 4 self.view.addSubview(callStatusLabel) contactAvatarView = AvatarImageView()