summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Smith <sepyreg@getnada.com>2019-10-31 10:21:12 +0000
committerThomas Holder <thomas@thomas-holder.de>2019-10-31 10:21:12 +0000
commitc080c5e6339d61508df756196b89eb7665c0c503 (patch)
tree3e6ca636cdf1db669efa5eb63c584916ef8620f9
parentFix initial transform of shape in opened file. (diff)
downloadinkscape-c080c5e6339d61508df756196b89eb7665c0c503.tar.gz
inkscape-c080c5e6339d61508df756196b89eb7665c0c503.zip
Attempt to fix inbox#976
-rw-r--r--src/live_effects/lpe-copy_rotate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-copy_rotate.cpp b/src/live_effects/lpe-copy_rotate.cpp
index c9a88650c..1801f4906 100644
--- a/src/live_effects/lpe-copy_rotate.cpp
+++ b/src/live_effects/lpe-copy_rotate.cpp
@@ -67,7 +67,7 @@ LPECopyRotate::LPECopyRotate(LivePathEffectObject *lpeobject) :
starting_angle(_("Starting angle"), _("Angle of the first copy"), "starting_angle", &wr, this, 0.0),
rotation_angle(_("Rotation angle"), _("Angle between two successive copies"), "rotation_angle", &wr, this, 60.0),
num_copies(_("Number of copies"), _("Number of copies of the original path"), "num_copies", &wr, this, 6),
- gap(_("Gap"), _("Gap"), _("Gap space between copies, use small negative gaps to fix some joins"), &wr, this, 0.05),
+ gap(_("Gap"), _("Gap space between copies, use small negative gaps to fix some joins"), "gap", &wr, this, 0.05),
copies_to_360(_("360° Copies"), _("No rotation angle, fixed to 360°"), "copies_to_360", &wr, this, true),
mirror_copies(_("Mirror copies"), _("Mirror between copies"), "mirror_copies", &wr, this, false),
split_items(_("Split elements"), _("Split elements, so each can have its own style"), "split_items", &wr, this, false),