Start/Shutdown Android server from RemoteManager dialog.

ANativeActivity_finish when renderdoccmd() returns.
This commit is contained in:
Michael Rennie
2017-06-12 16:47:41 +01:00
committed by Baldur Karlsson
parent 53c0c20c8a
commit 70f55a1458
5 changed files with 24 additions and 5 deletions
+5 -1
View File
@@ -325,7 +325,11 @@ void RemoteManager::updateConnectButton()
if(host)
{
if(host->Hostname == lit("localhost"))
bool isLocalhost = host->Hostname == lit("localhost");
if(isLocalhost || host->IsHostADB())
ui->runCommand->setEnabled(false);
if(isLocalhost)
{
ui->connect->setEnabled(false);
}