From 00a6551622ee0446b37f8da44512796a3d6d5b6e Mon Sep 17 00:00:00 2001 From: Aidan Cyr <0neblock@users.noreply.github.com> Date: Thu, 2 Feb 2017 23:00:47 +1100 Subject: [PATCH] Fixed following on flowlist Fixed a focus_follow was missed when options were cleaned up. --- mitmproxy/tools/console/flowlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitmproxy/tools/console/flowlist.py b/mitmproxy/tools/console/flowlist.py index 8ee2d55d3..b26289af6 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