Fixed extra max(

This commit is contained in:
Skyler Lehmkuhl 2012-02-13 21:58:37 -05:00
parent 2a0338726a
commit e3519cea78
1 changed files with 1 additions and 1 deletions

View File

@ -1252,7 +1252,7 @@ class Shape (object):
cr.newpath()
cr.pencolor = self.linecolor.pygui
cr.fillcolor = self.fillcolor.pygui
cr.pensize = max(max(self.linewidth,1))
cr.pensize = max(self.linewidth,1)
for i in self.shapedata:
if i[0]=="M":
point = (i[1], i[2])