Remove deprecated -T option

The short option -T is deprecated since v1.11. Only the long version
(--always-on-top) remains.
This commit is contained in:
Romain Vimont 2021-11-07 21:35:14 +01:00
parent b62df7ee91
commit 570a003c39

View file

@ -799,7 +799,7 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
optind = 0; // reset to start from the first argument in tests
int c;
while ((c = getopt_long(argc, argv, "b:fF:hKm:nNp:r:s:StTvV:w",
while ((c = getopt_long(argc, argv, "b:fF:hKm:nNp:r:s:StvV:w",
long_options, NULL)) != -1) {
switch (c) {
case 'b':
@ -871,9 +871,6 @@ scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]) {
case 't':
opts->show_touches = true;
break;
case 'T':
LOGW("Deprecated option -T. Use --always-on-top instead.");
// fall through
case OPT_ALWAYS_ON_TOP:
opts->always_on_top = true;
break;