diff options
| author | Jabiertxof <jabier.arraiza@marker.es> | 2018-10-25 08:04:06 +0000 |
|---|---|---|
| committer | Jabiertxof <jabier.arraiza@marker.es> | 2018-10-25 08:04:06 +0000 |
| commit | 60019264d8dc1f3bc845e845591bbed57ca91f13 (patch) | |
| tree | 36cbe0cc74cff6006f4d63489ff5207588268fbf /src | |
| parent | Improvements to simplify Knots (diff) | |
| download | inkscape-60019264d8dc1f3bc845e845591bbed57ca91f13.tar.gz inkscape-60019264d8dc1f3bc845e845591bbed57ca91f13.zip | |
Fixing coding style
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/lpe-knot.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/live_effects/lpe-knot.cpp b/src/live_effects/lpe-knot.cpp index 6bb163502..e7e282052 100644 --- a/src/live_effects/lpe-knot.cpp +++ b/src/live_effects/lpe-knot.cpp @@ -351,8 +351,10 @@ LPEKnot::LPEKnot(LivePathEffectObject *lpeobject) // initialise your parameters here: interruption_width(_("_Gap length:"), _("Size of hidden region of lower string"), "interruption_width", &wr, this, 3) - , prop_to_stroke_width(_("_In units of stroke width"), _("Gap width is given in multiples of stroke width. When unchecked, document units are used."), - "prop_to_stroke_width", &wr, this, true) + , prop_to_stroke_width( + _("_In units of stroke width"), + _("Gap width is given in multiples of stroke width. When unchecked, document units are used."), + "prop_to_stroke_width", &wr, this, true) , both(_("_Both gaps"), _("Use gap in both intersection elements"), "both", &wr, this, false) , inverse_width(_("_Groups: Inverse"), _("Use other stroke width, useful in groups with different stroke widths"), "inverse_width", &wr, this, false) @@ -655,7 +657,8 @@ void LPEKnot::addKnotHolderEntities(KnotHolder *knotholder, SPItem *item) { KnotHolderEntity *e = new KnotHolderEntityCrossingSwitcher(this); e->create(nullptr, item, knotholder, Inkscape::CTRL_TYPE_UNKNOWN, - _("Drag to select a crossing, click to flip it, Shift + click to change all crossings, Ctrl + click to reset and change all crossings")); + _("Drag to select a crossing, click to flip it, Shift + click to change all crossings, Ctrl + click to " + "reset and change all crossings")); knotholder->add(e); }; |
