diff options
| -rw-r--r-- | mitmproxy/tools/console/statusbar.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/mitmproxy/tools/console/statusbar.py b/mitmproxy/tools/console/statusbar.py index a1ac4298..b358f711 100644 --- a/mitmproxy/tools/console/statusbar.py +++ b/mitmproxy/tools/console/statusbar.py @@ -181,6 +181,10 @@ class StatusBar(urwid.WidgetWrap):              r.append("[")              r.append(("heading_key", "M"))              r.append(":%s]" % self.master.options.default_contentview) +        if self.master.options.order: +            r.append("[") +            r.append(("heading_key", "o")) +            r.append(":%s]" % self.master.options.order)          opts = []          if self.master.options.anticache: | 
