CML2 value width increased to 32.

This little patch increases the notorious 8-char wide value width in
the cml2 configurator to 32 characters. Now all values are properly visible.
This commit is contained in:
Bahadir Balban
2009-09-19 21:28:24 +03:00
parent b2c93979ba
commit 893b68c643

View File

@@ -1119,7 +1119,7 @@ class WindowBaton:
class curses_style_menu:
"Command interpreter for line-oriented configurator."
input_nmatch = re.compile(r">>>.*\(([0-9]+)\)$")
valwidth = 8 # This is a constant
valwidth = 32 # This is a constant
def __init__(self, stdscr, config, mybanner):
if mybanner and configuration.banner.find("%s") > -1: