summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorStephen Silver <sasilver@yahoo.com>2008-05-30 09:39:13 +0000
committersasilver <sasilver@users.sourceforge.net>2008-05-30 09:39:13 +0000
commite7877a1c83d679ba5ae830c6ce81664022a8f79b (patch)
tree6f35448aa041c4edc1d688e32ac7aed6d865459f /share
parent* implemented text_to_glyphs, so that now we can have ligadure glyphs (diff)
downloadinkscape-e7877a1c83d679ba5ae830c6ce81664022a8f79b.tar.gz
inkscape-e7877a1c83d679ba5ae830c6ce81664022a8f79b.zip
Alvin Penner's fix for bug 235861
(bzr r5764)
Diffstat (limited to 'share')
-rwxr-xr-xshare/extensions/lindenmayer.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/share/extensions/lindenmayer.py b/share/extensions/lindenmayer.py
index e690e003c..daa002b89 100755
--- a/share/extensions/lindenmayer.py
+++ b/share/extensions/lindenmayer.py
@@ -56,6 +56,9 @@ class LSystem(inkex.Effect):
action="store", type="string",
dest="rules", default="F=FF-[-F+F+F]+[+F-F-F]",
help="replacement rules")
+ self.OptionParser.add_option("-t", "--tab",
+ action="store", type="string",
+ dest="tab")
self.stack = []
self.turtle = pturtle.pTurtle()
def iterate(self):