diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-03-22 16:59:11 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-03-22 16:59:11 +1300 |
commit | 120c8db8a413018bde60d156f480ade001b492ef (patch) | |
tree | 8df901663c058d0fa4cbd1b63ea285f86d9874a5 /libmproxy/console/grideditor.py | |
parent | aa9a38522f5fbfef556578b6018ad365ad5e844d (diff) | |
download | mitmproxy-120c8db8a413018bde60d156f480ade001b492ef.tar.gz mitmproxy-120c8db8a413018bde60d156f480ade001b492ef.tar.bz2 mitmproxy-120c8db8a413018bde60d156f480ade001b492ef.zip |
console: refactor the way we keep global view state
Diffstat (limited to 'libmproxy/console/grideditor.py')
-rw-r--r-- | libmproxy/console/grideditor.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libmproxy/console/grideditor.py b/libmproxy/console/grideditor.py index dc3bad0e..a1d662c8 100644 --- a/libmproxy/console/grideditor.py +++ b/libmproxy/console/grideditor.py @@ -10,11 +10,11 @@ from .. import utils, filt, script from netlib import http_uastrings -footer = [ +FOOTER = [ ('heading_key', "enter"), ":edit ", ('heading_key', "q"), ":back ", ] -footer_editing = [ +FOOTER_EDITING = [ ('heading_key', "esc"), ":stop editing ", ] @@ -164,12 +164,12 @@ class GridWalker(urwid.ListWalker): self.editing = GridRow( self.focus_col, True, self.editor, self.lst[self.focus] ) - self.editor.master.statusbar.update(footer_editing) + self.editor.master.loop.widget.footer.update(FOOTER_EDITING) self._modified() def stop_edit(self): if self.editing: - self.editor.master.statusbar.update(footer) + self.editor.master.loop.widget.footer.update(FOOTER) self.set_current_value(self.editing.get_edit_value(), False) self.editing = False self._modified() @@ -268,7 +268,7 @@ class GridEditor(urwid.WidgetWrap): self.lb, header = urwid.Pile([title, h]) ) - self.master.statusbar.update("") + self.master.loop.widget.footer.update("") self.show_empty_msg() def show_empty_msg(self): |