From a754b557537cc1461371a9382764a3ced69b9a0c Mon Sep 17 00:00:00 2001 From: Diego Waxemberg Date: Thu, 8 Jan 2015 20:46:04 -0500 Subject: [PATCH] fixed app image looking stretched --- Limelight/UIAppView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Limelight/UIAppView.m b/Limelight/UIAppView.m index 83455f7..89e04e6 100644 --- a/Limelight/UIAppView.m +++ b/Limelight/UIAppView.m @@ -30,8 +30,8 @@ static int LABEL_DY = 20; [self addSubview:_appButton]; [self sizeToFit]; - _appButton.frame = CGRectMake(0, 0, noImage.size.width / 2, noImage.size.height / 2); - self.frame = CGRectMake(0, 0, noImage.size.width / 2, noImage.size.height / 2); + _appButton.frame = CGRectMake(0, 0, noImage.size.width, noImage.size.height); + self.frame = CGRectMake(0, 0, noImage.size.width, noImage.size.height); return self; }