From e3519cea78f3b26b21341e4d4a34604020cc13f8 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Mon, 13 Feb 2012 21:58:37 -0500 Subject: [PATCH] Fixed extra max( --- svlgui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svlgui.py b/svlgui.py index 3860720..7355dd5 100644 --- a/svlgui.py +++ b/svlgui.py @@ -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])