diff options
author | Shadab Zafar <dufferzafar0@gmail.com> | 2016-07-22 10:40:06 +0530 |
---|---|---|
committer | Shadab Zafar <dufferzafar0@gmail.com> | 2016-07-23 10:41:57 +0530 |
commit | 32ef73e6b42729dfe571c1edd9694aee761f3f94 (patch) | |
tree | 38c1fe577d0481a694a5e1be9515d902d0fddbda | |
parent | 484dbd8a7b820376831da31277092c3803578f53 (diff) | |
download | mitmproxy-32ef73e6b42729dfe571c1edd9694aee761f3f94.tar.gz mitmproxy-32ef73e6b42729dfe571c1edd9694aee761f3f94.tar.bz2 mitmproxy-32ef73e6b42729dfe571c1edd9694aee761f3f94.zip |
Remove [Marked Flows] status indicator
-rw-r--r-- | mitmproxy/console/statusbar.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mitmproxy/console/statusbar.py b/mitmproxy/console/statusbar.py index 3120fa71..44be2b3e 100644 --- a/mitmproxy/console/statusbar.py +++ b/mitmproxy/console/statusbar.py @@ -171,10 +171,6 @@ class StatusBar(urwid.WidgetWrap): r.append("[") r.append(("heading_key", "l")) r.append(":%s]" % self.master.state.limit_txt) - if self.master.state.mark_filter: - r.append("[") - r.append(("heading_key", "Marked Flows")) - r.append("]") if self.master.options.stickycookie: r.append("[") r.append(("heading_key", "t")) |