From b5aab60985ca7b1164fcae7831d456f535445143 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Mon, 30 Jan 2017 18:27:52 -0500 Subject: [PATCH] Respond to CR. // FREEBIE --- Signal/src/view controllers/CallViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/view controllers/CallViewController.swift b/Signal/src/view controllers/CallViewController.swift index d54848e56..347ef220e 100644 --- a/Signal/src/view controllers/CallViewController.swift +++ b/Signal/src/view controllers/CallViewController.swift @@ -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)