From d18c713684355490d67e95246c4f1b44afd7a5ed Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 28 Dec 2018 20:32:22 -0800 Subject: [PATCH] Fix tip display on iPhone SE --- Limelight/ViewControllers/StreamFrameViewController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limelight/ViewControllers/StreamFrameViewController.m b/Limelight/ViewControllers/StreamFrameViewController.m index 8118e07..546541a 100644 --- a/Limelight/ViewControllers/StreamFrameViewController.m +++ b/Limelight/ViewControllers/StreamFrameViewController.m @@ -80,7 +80,7 @@ [self.tipLabel sizeToFit]; self.tipLabel.textAlignment = NSTextAlignmentCenter; - self.tipLabel.center = CGPointMake(self.view.frame.size.width / 2, self.tipLabel.center.y); + self.tipLabel.center = CGPointMake(self.view.frame.size.width / 2, self.view.frame.size.height * 0.9); _streamMan = [[StreamManager alloc] initWithConfig:self.streamConfig renderView:self.view