mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Fixed an issue when the monitor filters were not applied in their order // Resolve #4320
This commit is contained in:
@ -99,7 +99,7 @@ def new_terminal(options):
|
|||||||
new_serial_instance(options),
|
new_serial_instance(options),
|
||||||
echo=options["echo"],
|
echo=options["echo"],
|
||||||
eol=options["eol"].lower(),
|
eol=options["eol"].lower(),
|
||||||
filters=options["filters"] or ["default"],
|
filters=list(reversed(options["filters"] or ["default"])),
|
||||||
)
|
)
|
||||||
term.exit_character = chr(options["exit_char"])
|
term.exit_character = chr(options["exit_char"])
|
||||||
term.menu_character = chr(options["menu_char"])
|
term.menu_character = chr(options["menu_char"])
|
||||||
|
Reference in New Issue
Block a user