1.1 --- a/img/buildicons.py Thu Jun 05 01:36:08 2008 +0100
1.2 +++ b/img/buildicons.py Mon Dec 21 23:52:38 2009 +0000
1.3 @@ -10,6 +10,8 @@
1.4 BLOBRADIUS = WIDTH / 4.0
1.5 LINEWIDTH = WIDTH / 12.0
1.6
1.7 +ENABLE_CROSSOVER = False
1.8 +
1.9 surface = None
1.10 ctx = None
1.11
1.12 @@ -46,7 +48,7 @@
1.13 def k(n):
1.14 if n & 1:
1.15 ctx.move_to(MID, 0)
1.16 - if n & 2:
1.17 + if ENABLE_CROSSOVER and n & 2:
1.18 ctx.line_to(MID, MID - BLOBRADIUS - LINEWIDTH / 4)
1.19 ctx.stroke()
1.20 ctx.move_to(MID, MID - LINEWIDTH / 4)
1.21 @@ -54,7 +56,7 @@
1.22 ctx.stroke()
1.23 if n & 2:
1.24 ctx.move_to(0, MID)
1.25 - if n & 1:
1.26 + if ENABLE_CROSSOVER and n & 1:
1.27 ctx.line_to(MID - BLOBRADIUS + LINEWIDTH, MID)
1.28 ctx.curve_to(MID - BLOBRADIUS + LINEWIDTH, MID - BLOBRADIUS,
1.29 MID + BLOBRADIUS - LINEWIDTH, MID - BLOBRADIUS,