Set the description of some parameters
[synfig.git] / synfig-core / src / modules / mod_gradient / lineargradient.cpp
index c47ffad..8811226 100644 (file)
@@ -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;