From 519175dd93ef2d33fbfad1f15b54b158b6e994e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20H=C3=B6nicke?= Date: Mon, 28 Feb 2022 14:23:13 +0100 Subject: [PATCH] fix: remove mouse support since it is not working --- PyInquirer/prompts/list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyInquirer/prompts/list.py b/PyInquirer/prompts/list.py index 2c6baa8..f53e126 100644 --- a/PyInquirer/prompts/list.py +++ b/PyInquirer/prompts/list.py @@ -173,6 +173,6 @@ def set_answer(event): return Application( layout=Layout(layout), key_bindings=kb, - mouse_support=True, + mouse_support=False, style=style )