From 466ebe28401978759b3b30c2542e3246293152d3 Mon Sep 17 00:00:00 2001 From: Andrew Scagnelli Date: Mon, 22 Oct 2018 23:45:17 -0400 Subject: [PATCH] disable focus effects on overlay icon --- Limelight/UIAppView.m | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Limelight/UIAppView.m b/Limelight/UIAppView.m index 7937d1c..10d4dd0 100644 --- a/Limelight/UIAppView.m +++ b/Limelight/UIAppView.m @@ -68,10 +68,7 @@ static UIImage* noImage; if ([_app.id isEqualToString:_app.host.currentGame]) { // Only create the app overlay if needed _appOverlay = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Play"]]; -#if TARGET_OS_TV - _appOverlay.adjustsImageWhenAncestorFocused = YES; - _appOverlay.userInteractionEnabled = YES; -#else +#if !TARGET_OS_TV _appOverlay.layer.shadowColor = [UIColor blackColor].CGColor; _appOverlay.layer.shadowOffset = CGSizeMake(0, 0); _appOverlay.layer.shadowOpacity = 1;