From fb4af4eb786e5f062c00dc8105f2e2812d66c289 Mon Sep 17 00:00:00 2001 From: Timothy Elliott Date: Wed, 19 Aug 2015 13:07:39 -0700 Subject: console: add command line flag to disable mouse interaction Adds the --no-mouse command line option to disable the mouse. Fixes #685 --- libmproxy/cmdline.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libmproxy/cmdline.py') diff --git a/libmproxy/cmdline.py b/libmproxy/cmdline.py index d033fb76..6125bfbf 100644 --- a/libmproxy/cmdline.py +++ b/libmproxy/cmdline.py @@ -608,6 +608,11 @@ def mitmproxy(): action="store_true", dest="eventlog", help="Show event log." ) + parser.add_argument( + "--no-mouse", + action="store_true", dest="no_mouse", + help="Disable mouse interaction." + ) group = parser.add_argument_group( "Filters", "See help in mitmproxy for filter expression syntax." -- cgit v1.2.3