Index: source/blender/editors/transform/transform.c =================================================================== --- source/blender/editors/transform/transform.c (revision 45727) +++ source/blender/editors/transform/transform.c (working copy) @@ -2515,6 +2515,8 @@ /* default header print */ sprintf(str, "Shear: %.3f %s", value, t->proptext); } + + t->values[0] = value; unit_m3(smat); @@ -3616,6 +3618,7 @@ sprintf(str, "Shrink/Fatten: %.4f %s", distance, t->proptext); } + t->values[0] = distance; for (i = 0 ; i < t->total; i++, td++) { if (td->flag & TD_NOACTION) @@ -3821,6 +3824,8 @@ sprintf(str, "Push/Pull: %.4f%s %s", distance, t->con.text, t->proptext); } + t->values[0] = distance; + if (t->con.applyRot && t->con.mode & CON_APPLY) { t->con.applyRot(t, NULL, axis, NULL); } @@ -4923,6 +4928,8 @@ CLAMP(final, -1.0f, 1.0f); + t->values[0] = final; + /*do stuff here*/ if (t->customData) doEdgeSlide(t, final);