Patch #751107: Slant must be 'roman', not 'normal'.

This commit is contained in:
Martin v. Löwis 2003-06-14 21:40:04 +00:00
parent d6efae500c
commit 1ef23657c4
1 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ import Tkinter
# weight/slant
NORMAL = "normal"
ROMAN = "roman"
BOLD = "bold"
ITALIC = "italic"
@ -37,7 +38,7 @@ class Font:
family -- font 'family', e.g. Courier, Times, Helvetica
size -- font size in points
weight -- font thickness: NORMAL, BOLD
slant -- font slant: NORMAL, ITALIC
slant -- font slant: ROMAN, ITALIC
underline -- font underlining: false (0), true (1)
overstrike -- font strikeout: false (0), true (1)
name -- name to use for this font configuration (defaults to a unique name)