Update of /cvsroot/pythonreports/PythonReports/PythonReports
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20548
Modified Files:
TkDrivers.py
Log Message:
fix italic fonts: option name is "slant", not "style"
Index: TkDrivers.py
===================================================================
RCS file: /cvsroot/pythonreports/PythonReports/PythonReports/TkDrivers.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TkDrivers.py 6 Dec 2006 17:03:25 -0000 1.2
--- TkDrivers.py 12 Dec 2006 10:49:27 -0000 1.3
***************
*** 6,9 ****
--- 6,10 ----
"""
"""History (most recent first):
+ 12-dec-2006 [als] fix italic fonts: option name is "slant", not "style"
05-dec-2006 [als] sweep pylint warnings
04-nov-2006 [als] created
***************
*** 61,65 ****
for (_prop, _attr, _value) in (
("bold", "weight", "bold"),
! ("italic", "style", "italic"),
("underline", "underline", True),
):
--- 62,66 ----
for (_prop, _attr, _value) in (
("bold", "weight", "bold"),
! ("italic", "slant", "italic"),
("underline", "underline", True),
):
|