Disable more actions if --no-control

If control is disabled, then do not enable "show touches" or
automatically power off the device on close.
This commit is contained in:
Romain Vimont 2022-01-24 21:45:44 +01:00
parent ca516f4318
commit f289d206ea

View file

@ -1600,6 +1600,14 @@ parse_args_with_getopt(struct scrcpy_cli_args *args, int argc, char *argv[],
LOGE("Could not request to stay awake if control is disabled");
return false;
}
if (opts->show_touches) {
LOGE("Could not request to show touches if control is disabled");
return false;
}
if (opts->power_off_on_close) {
LOGE("Could not request power off on close if control is disabled");
return false;
}
}
return true;