summaryrefslogtreecommitdiff
path: root/lib/elements
diff options
context:
space:
mode:
Diffstat (limited to 'lib/elements')
-rw-r--r--lib/elements/fill.py3
-rw-r--r--lib/elements/satin_column.py5
-rw-r--r--lib/elements/stroke.py4
3 files changed, 8 insertions, 4 deletions
diff --git a/lib/elements/fill.py b/lib/elements/fill.py
index 672f4db8..77284414 100644
--- a/lib/elements/fill.py
+++ b/lib/elements/fill.py
@@ -44,7 +44,8 @@ class Fill(EmbroideryElement):
@param(
'flip',
_('Flip fill (start right-to-left)'),
- tooltip=_('The flip option can help you with routing your stitch path. When you enable flip, stitching goes from right-to-left instead of left-to-right.'),
+ tooltip=_('The flip option can help you with routing your stitch path. '
+ 'When you enable flip, stitching goes from right-to-left instead of left-to-right.'),
type='boolean',
default=False)
def flip(self):
diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py
index e13e1118..9927a606 100644
--- a/lib/elements/satin_column.py
+++ b/lib/elements/satin_column.py
@@ -42,7 +42,8 @@ class SatinColumn(EmbroideryElement):
@param(
'pull_compensation_mm',
_('Pull compensation'),
- tooltip=_('Satin stitches pull the fabric together, resulting in a column narrower than you draw in Inkscape. This setting expands each pair of needle penetrations outward from the center of the satin column.'),
+ tooltip=_('Satin stitches pull the fabric together, resulting in a column narrower than you draw in Inkscape. '
+ 'This setting expands each pair of needle penetrations outward from the center of the satin column.'),
unit='mm',
type='float',
default=0)
@@ -174,7 +175,7 @@ class SatinColumn(EmbroideryElement):
# handle null intersections here?
linestrings = shops.split(rail, rungs)
- #print >> dbg, "rails and rungs", [str(rail) for rail in rails], [str(rung) for rung in rungs]
+ # print >> dbg, "rails and rungs", [str(rail) for rail in rails], [str(rung) for rung in rungs]
if len(linestrings.geoms) < len(rungs.geoms) + 1:
self.fatal(_("satin column: One or more of the rungs doesn't intersect both rails.") +
" " + _("Each rail should intersect both rungs once."))
diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py
index 183ef23b..3ae2b143 100644
--- a/lib/elements/stroke.py
+++ b/lib/elements/stroke.py
@@ -41,7 +41,9 @@ class Stroke(EmbroideryElement):
@param(
'bean_stitch_repeats',
_('Bean stitch number of repeats'),
- tooltip=_('Backtrack each stitch this many times. A value of 1 would triple each stitch (forward, back, forward). A value of 2 would quintuple each stitch, etc. Only applies to running stitch.'),
+ tooltip=_('Backtrack each stitch this many times. '
+ 'A value of 1 would triple each stitch (forward, back, forward). '
+ 'A value of 2 would quintuple each stitch, etc. Only applies to running stitch.'),
type='int',
default=0,
sort_index=2)