From f289d206ea0e10cc052137781c39da862ebe2f73 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Mon, 24 Jan 2022 21:45:44 +0100 Subject: [PATCH] Disable more actions if --no-control If control is disabled, then do not enable "show touches" or automatically power off the device on close. --- app/src/cli.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/src/cli.c b/app/src/cli.c index 57e02df8..60492730 100644 --- a/app/src/cli.c +++ b/app/src/cli.c @@ -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;