aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2011-03-15 17:37:09 +1300
committerAldo Cortesi <aldo@nullcube.com>2011-03-15 17:37:09 +1300
commite3ad3790dec1105824fa793ae9f7c927b6f81021 (patch)
tree6f0e6538d48ecbb8067ab9d837272677a69ec630 /libmproxy
parent6d5c32ad4b6078a72b73b695981faec36ef917c0 (diff)
downloadmitmproxy-e3ad3790dec1105824fa793ae9f7c927b6f81021.tar.gz
mitmproxy-e3ad3790dec1105824fa793ae9f7c927b6f81021.tar.bz2
mitmproxy-e3ad3790dec1105824fa793ae9f7c927b6f81021.zip
Fix minor styling and glitches.
Diffstat (limited to 'libmproxy')
-rw-r--r--libmproxy/console.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/libmproxy/console.py b/libmproxy/console.py
index d36d87da..eaaa7b3a 100644
--- a/libmproxy/console.py
+++ b/libmproxy/console.py
@@ -960,7 +960,7 @@ class ConsoleMaster(flow.FlowMaster):
self.palette = [
('body', 'black', 'dark cyan', 'standout'),
('foot', 'light gray', 'default'),
- ('title', 'white', 'default',),
+ ('title', 'white,bold', 'default',),
('editline', 'white', 'default',),
# Status bar
@@ -971,7 +971,7 @@ class ConsoleMaster(flow.FlowMaster):
# Help
('key', 'light cyan', 'default', 'underline'),
- ('head', 'white', 'default'),
+ ('head', 'white,bold', 'default'),
('text', 'light gray', 'default'),
# List and Connections
@@ -980,8 +980,8 @@ class ConsoleMaster(flow.FlowMaster):
('goodcode', 'light green', 'default'),
('error', 'light red', 'default'),
('header', 'dark cyan', 'default'),
- ('heading', 'white', 'dark blue'),
- ('highlight', 'white', 'default'),
+ ('heading', 'white,bold', 'dark blue'),
+ ('highlight', 'white,bold', 'default'),
('inactive', 'dark gray', 'default'),
('ack', 'light red', 'default'),
@@ -1215,7 +1215,7 @@ class ConsoleMaster(flow.FlowMaster):
def prompt_edit(self, prompt, text, callback):
self.statusbar.prompt(prompt, text)
self.view.set_focus("footer")
- self.prompting = callback
+ self.prompting = (callback, [])
def prompt_onekey(self, prompt, keys, callback):
"""