From 97681f3a0d4eb34a5eb71405a13c4e74383459d7 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 30 Aug 2019 20:00:00 -0700 Subject: [PATCH] Increase size of PC icon --- Limelight/UIComputerView.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Limelight/UIComputerView.m b/Limelight/UIComputerView.m index c9e479e..75589c2 100644 --- a/Limelight/UIComputerView.m +++ b/Limelight/UIComputerView.m @@ -34,7 +34,11 @@ static const int LABEL_DY = 20; #if TARGET_OS_TV _hostButton.frame = CGRectMake(0, 0, 400, 400); #else - _hostButton.frame = CGRectMake(0, 0, 100, 100); + if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { + _hostButton.frame = CGRectMake(0, 0, 200, 200); + } else { + _hostButton.frame = CGRectMake(0, 0, 100, 100); + } #endif _hostButton.layer.shadowColor = [[UIColor blackColor] CGColor];