X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=blobdiff_plain;f=synfig-core%2Fsrc%2Fmodules%2Fmod_gradient%2Fcurvegradient.cpp;h=691b0e5f5ee7fdfd0772e1b8e4de16a1cfee0a21;hp=ec376bade24699589daf8f69a7774cfe5f49e08f;hb=42e8f249832b9ca81691bbf76a6668aa4612117f;hpb=761f182dca80197d703d8ad37f74e68b326672d0 diff --git a/synfig-core/src/modules/mod_gradient/curvegradient.cpp b/synfig-core/src/modules/mod_gradient/curvegradient.cpp index ec376ba..691b0e5 100644 --- a/synfig-core/src/modules/mod_gradient/curvegradient.cpp +++ b/synfig-core/src/modules/mod_gradient/curvegradient.cpp @@ -533,28 +533,39 @@ CurveGradient::get_param_vocab()const Layer::Vocab ret(Layer_Composite::get_param_vocab()); ret.push_back(ParamDesc("origin") - .set_local_name(_("Origin"))); - + .set_local_name(_("Origin")) + .set_description(_("Offset for the Vertices List")) + ); ret.push_back(ParamDesc("width") .set_is_distance() - .set_local_name(_("Width"))); - + .set_local_name(_("Width")) + .set_description(_("Global width of the gradient")) + ); ret.push_back(ParamDesc("bline") .set_local_name(_("Vertices")) .set_origin("origin") .set_hint("width") - .set_description(_("A list of BLine Points"))); - + .set_description(_("A list of BLine Points")) + ); ret.push_back(ParamDesc("gradient") - .set_local_name(_("Gradient"))); + .set_local_name(_("Gradient")) + .set_description(_("Gradient to apply")) + ); ret.push_back(ParamDesc("loop") - .set_local_name(_("Loop"))); + .set_local_name(_("Loop")) + .set_description(_("When checked the gradient is looped")) + ); ret.push_back(ParamDesc("zigzag") - .set_local_name(_("ZigZag"))); + .set_local_name(_("ZigZag")) + .set_description(_("When checked the gradient is summetrical at the center")) + ); ret.push_back(ParamDesc("perpendicular") - .set_local_name(_("Perpendicular"))); + .set_local_name(_("Perpendicular")) + ); ret.push_back(ParamDesc("fast") - .set_local_name(_("Fast"))); + .set_local_name(_("Fast")) + .set_description(_("When checked, renders quickly but with artifacts")) + ); return ret; }