X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=blobdiff_plain;f=synfig-core%2Fsrc%2Fmodules%2Flyr_std%2Fwarp.cpp;h=6d310330fffcc0172440fba484d337f1691d98c9;hp=729272edad9fa79d6a21e8ba4fc97e4257cbe457;hb=42e8f249832b9ca81691bbf76a6668aa4612117f;hpb=761f182dca80197d703d8ad37f74e68b326672d0 diff --git a/synfig-core/src/modules/lyr_std/warp.cpp b/synfig-core/src/modules/lyr_std/warp.cpp index 729272e..6d31033 100644 --- a/synfig-core/src/modules/lyr_std/warp.cpp +++ b/synfig-core/src/modules/lyr_std/warp.cpp @@ -372,30 +372,36 @@ Warp::get_param_vocab()const ret.push_back(ParamDesc("src_tl") .set_local_name(_("Source TL")) .set_box("src_br") + .set_description(_("Top Left corner of the source to warp")) ); ret.push_back(ParamDesc("src_br") .set_local_name(_("Source BR")) + .set_description(_("Bottom Right corner of the source to warp")) ); ret.push_back(ParamDesc("dest_tl") .set_local_name(_("Dest TL")) .set_connect("dest_tr") + .set_description(_("Top Left corner of the destination")) ); ret.push_back(ParamDesc("dest_tr") .set_local_name(_("Dest TR")) .set_connect("dest_br") + .set_description(_("Top Right corner of the destination")) ); ret.push_back(ParamDesc("dest_br") .set_local_name(_("Dest BR")) .set_connect("dest_bl") + .set_description(_("Bottom Right corner of the destination")) ); ret.push_back(ParamDesc("dest_bl") .set_local_name(_("Dest BL")) .set_connect("dest_tl") + .set_description(_("Bottom Left corner of the destination")) ); ret.push_back(ParamDesc("clip") @@ -404,6 +410,7 @@ Warp::get_param_vocab()const ret.push_back(ParamDesc("horizon") .set_local_name(_("Horizon")) + .set_description(_("Height that determines the horizon in perspectives")) ); return ret;