From edfc6e4256f30d3461812ebdcdbd27622910376c Mon Sep 17 00:00:00 2001 From: Florent de Lamotte Date: Sat, 19 Apr 2025 23:36:04 +0200 Subject: [PATCH] remove mouse support --- src/meshcore_cli/meshcore_cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index f72b2b1..41892fc 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -247,10 +247,11 @@ Line starting with \"$\" or \".\" will issue a meshcli command. else: our_history = None + # beware, mouse support breaks mouse scroll ... session = PromptSession(completer=completer, history=our_history, wrap_lines=False, - mouse_support=True, + mouse_support=False, complete_style=CompleteStyle.MULTI_COLUMN) bindings = KeyBindings()