mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user