Change default exit combination for Device Monitor from `Ctrl+] to Ctrl+C`

This commit is contained in:
Ivan Kravets
2016-10-10 20:08:54 +03:00
parent 4ead3f0570
commit 1d203b46b4
4 changed files with 14 additions and 14 deletions

View File

@@ -138,9 +138,9 @@ if int(PYSERIAL_VERSION[0]) == 3:
@click.option(
"--exit-char",
type=int,
default=29,
default=3,
help="ASCII code of special character that is used to exit "
"the application, default=29 (DEC)")
"the application, default=3 (Ctrl+C)")
@click.option(
"--menu-char",
type=int,
@@ -210,9 +210,9 @@ else:
@click.option(
"--exit-char",
type=int,
default=29,
default=3,
help="ASCII code of special character that is used to exit "
"the application, default=29 (DEC)")
"the application, default=3 (Ctrl+C)")
@click.option(
"--menu-char",
type=int,