diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-07-13 19:05:32 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-07-13 19:15:38 +1200 |
commit | c9a0fe6a0e6d70fa2aea1b8dc337609a9439ade1 (patch) | |
tree | 74a26cfd1a546ae2b6416e2a952e4ba2ce1a05e7 /mitmproxy/console/options.py | |
parent | a20f8e9620c0cfcb40500113cbeb813a05a195bb (diff) | |
download | mitmproxy-c9a0fe6a0e6d70fa2aea1b8dc337609a9439ade1.tar.gz mitmproxy-c9a0fe6a0e6d70fa2aea1b8dc337609a9439ade1.tar.bz2 mitmproxy-c9a0fe6a0e6d70fa2aea1b8dc337609a9439ade1.zip |
Show how options integrates with console
This is not functional at the moment, because all mutable options are still on
master.
Diffstat (limited to 'mitmproxy/console/options.py')
-rw-r--r-- | mitmproxy/console/options.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mitmproxy/console/options.py b/mitmproxy/console/options.py index 5a01c9d5..6a4b8dd6 100644 --- a/mitmproxy/console/options.py +++ b/mitmproxy/console/options.py @@ -140,6 +140,7 @@ class Options(urwid.WidgetWrap): ) self.master.loop.widget.footer.update("") signals.update_settings.connect(self.sig_update_settings) + master.options.changed.connect(self.sig_update_settings) def sig_update_settings(self, sender): self.lb.walker._modified() |