aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAidan Cyr <0neblock@users.noreply.github.com>2017-02-02 23:00:47 +1100
committerGitHub <noreply@github.com>2017-02-02 23:00:47 +1100
commit00a6551622ee0446b37f8da44512796a3d6d5b6e (patch)
tree4b66df1ba4d1808a9f370d3b8a9a8ba52ae12e37
parentc1bc1ea584d4bb47c1b754dfa7f10ab4dfc380a3 (diff)
downloadmitmproxy-00a6551622ee0446b37f8da44512796a3d6d5b6e.tar.gz
mitmproxy-00a6551622ee0446b37f8da44512796a3d6d5b6e.tar.bz2
mitmproxy-00a6551622ee0446b37f8da44512796a3d6d5b6e.zip
Fixed following on flowlist
Fixed a focus_follow was missed when options were cleaned up.
-rw-r--r--mitmproxy/tools/console/flowlist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/tools/console/flowlist.py b/mitmproxy/tools/console/flowlist.py
index 8ee2d55d..b26289af 100644
--- a/mitmproxy/tools/console/flowlist.py
+++ b/mitmproxy/tools/console/flowlist.py
@@ -396,7 +396,7 @@ class FlowListBox(urwid.ListBox):
)
elif key == "F":
o = self.master.options
- o.focus_follow = not o.focus_follow
+ o.console_focus_follow = not o.console_focus_follow
elif key == "v":
val = not self.master.options.console_order_reversed
self.master.options.console_order_reversed = val