svn: r2948
This commit is contained in:
Alex Roitman 2004-03-02 03:09:49 +00:00
parent 13b1071281
commit 8be09bc3e3

View File

@ -541,7 +541,9 @@ class LPRDoc(BaseDoc.BaseDoc):
#find total width that the table needs to be. #find total width that the table needs to be.
#later this value may be used to cut the longest columns down #later this value may be used to cut the longest columns down
#so that data fits on the width of the page #so that data fits on the width of the page
__min_table_width = sum(__min_col_size) __min_table_width = 0
for __size in __min_col_size:
__min_table_width = __min_table_width + __size
#is table width larger than the width of the paper? #is table width larger than the width of the paper?
if __min_table_width > (self.__right_margin - self.__left_margin): if __min_table_width > (self.__right_margin - self.__left_margin):