X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=blobdiff_plain;f=synfig-core%2Fsrc%2Fmodules%2Fmod_gradient%2Flineargradient.cpp;h=88112264a40c6aebec340530c8529192fdb67c5b;hp=c47ffad497f38dcfa4ae70c2fbfc22d4821a2d4b;hb=42e8f249832b9ca81691bbf76a6668aa4612117f;hpb=761f182dca80197d703d8ad37f74e68b326672d0 diff --git a/synfig-core/src/modules/mod_gradient/lineargradient.cpp b/synfig-core/src/modules/mod_gradient/lineargradient.cpp index c47ffad..8811226 100644 --- a/synfig-core/src/modules/mod_gradient/lineargradient.cpp +++ b/synfig-core/src/modules/mod_gradient/lineargradient.cpp @@ -188,18 +188,23 @@ LinearGradient::get_param_vocab()const ret.push_back(ParamDesc("p1") .set_local_name(_("Point 1")) .set_connect("p2") + .set_description(_("Start point of the gradient")) ); ret.push_back(ParamDesc("p2") .set_local_name(_("Point 2")) + .set_description(_("End point of the gradient")) ); ret.push_back(ParamDesc("gradient") .set_local_name(_("Gradient")) + .set_description(_("Gradient to apply")) ); ret.push_back(ParamDesc("loop") .set_local_name(_("Loop")) + .set_description(_("When checked the gradient is looped")) ); ret.push_back(ParamDesc("zigzag") .set_local_name(_("ZigZag")) + .set_description(_("When checked the gradient is summetrical at the center")) ); return ret;