diff options
| author | Shadab Zafar <dufferzafar0@gmail.com> | 2016-08-18 00:24:52 +0530 |
|---|---|---|
| committer | Shadab Zafar <dufferzafar0@gmail.com> | 2016-08-18 00:24:52 +0530 |
| commit | ed88bcad7213aeba6f873aa0c4e28ea825c1b2a1 (patch) | |
| tree | b6924ef9465f55c7e06fa724f71ac3ada7ed14c6 | |
| parent | f922b7aaf5c45305599c2d996d6847ac73cf73b5 (diff) | |
| download | mitmproxy-ed88bcad7213aeba6f873aa0c4e28ea825c1b2a1.tar.gz mitmproxy-ed88bcad7213aeba6f873aa0c4e28ea825c1b2a1.tar.bz2 mitmproxy-ed88bcad7213aeba6f873aa0c4e28ea825c1b2a1.zip | |
Better status message on mouse drag
| -rw-r--r-- | mitmproxy/console/window.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/console/window.py b/mitmproxy/console/window.py index b24718be..35593643 100644 --- a/mitmproxy/console/window.py +++ b/mitmproxy/console/window.py @@ -27,7 +27,7 @@ class Window(urwid.Frame): if not k: if args[1] == "mouse drag": signals.status_message.send( - message = "Hold down shift, alt or ctrl to select text.", + message = "Hold down fn, shift, alt or ctrl to select text or use the --no-mouse parameter.", expire = 1 ) elif args[1] == "mouse press" and args[2] == 4: |
