Set title immediately when a PC is tapped

This commit is contained in:
Cameron Gutman
2019-11-03 15:12:43 -08:00
parent abe850cd72
commit c5e1bbf61b

View File

@@ -138,9 +138,6 @@ static NSMutableSet* hostList;
return;
}
self.title = host.name;
[self enableUpButton];
[self updateAppsForHost:host];
[self hideLoadingFrame: nil];
});
@@ -182,9 +179,6 @@ static NSMutableSet* hostList;
return;
}
self.title = host.name;
[self enableUpButton];
[self updateAppsForHost:host];
[self->_appManager stopRetrieving];
[self->_appManager retrieveAssetsFromHost:host];
@@ -299,6 +293,8 @@ static NSMutableSet* hostList;
Log(LOG_D, @"Clicked host: %@", host.name);
_selectedHost = host;
self.title = host.name;
[self enableUpButton];
[self disableNavigation];
#if TARGET_OS_TV