draw_style has 'bottom', 'top' and 'line' options

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
marco candrian 2008-04-16 03:48:48 +02:00 committed by Julien Danjou
parent 96fe2ec6fd
commit 4817c018d0
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,8 @@ def sections_print(sec, indent):
print indent + opt + " = <mod>" print indent + opt + " = <mod>"
elif opt in ["align"]: elif opt in ["align"]:
print indent + opt + " = <{auto, left, right}>" print indent + opt + " = <{auto, left, right}>"
elif opt in ["draw_style"]:
print indent + opt + " = <{bottom, top, line}>"
elif opt in ["text_align"]: elif opt in ["text_align"]:
print indent + opt + " = <{left, center, right}>" print indent + opt + " = <{left, center, right}>"
elif opt in ["grow"]: elif opt in ["grow"]: