X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Fsrc%2Fmodules%2Fmod_geometry%2Foutline.cpp;h=b57d8550a637f70fb25a10f1171a560c25f171f1;hb=d243d7ecee75cc386a751c79ce7085e92afcbf27;hp=e84effb2a99d78523f7d56d07e182807fe25130c;hpb=a095981e18cc37a8ecc7cd237cc22b9c10329264;p=synfig.git diff --git a/synfig-core/src/modules/mod_geometry/outline.cpp b/synfig-core/src/modules/mod_geometry/outline.cpp index e84effb..b57d855 100644 --- a/synfig-core/src/modules/mod_geometry/outline.cpp +++ b/synfig-core/src/modules/mod_geometry/outline.cpp @@ -161,6 +161,9 @@ Outline::Outline() bline=bline_point_list; needs_sync=true; + + Layer::Vocab voc(get_param_vocab()); + Layer::fill_static(voc); } @@ -822,11 +825,13 @@ Outline::get_param_vocab()const ret.push_back(ParamDesc("width") .set_is_distance() .set_local_name(_("Outline Width")) + .set_description(_("Global width of the outline")) ); ret.push_back(ParamDesc("expand") .set_is_distance() .set_local_name(_("Expand")) + .set_description(_("Value to add to the global width")) ); ret.push_back(ParamDesc("sharp_cusps") @@ -848,6 +853,7 @@ Outline::get_param_vocab()const ); ret.push_back(ParamDesc("homogeneous_width") .set_local_name(_("Homogeneous")) + .set_description(_("When checked the width takes the length of the spline to interpolate")) ); return ret;