From 3b6564a821e8797942132ad30f93af810952237a Mon Sep 17 00:00:00 2001 From: Elia Sarti Date: Sat, 16 Oct 2010 17:28:52 +0000 Subject: Fix for [#24292] When rendering with the stamp feature the scene opt. affects the seq. strip placement Fixed typo. --- source/blender/blenkernel/intern/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c index d750300291b..8ba7cde519d 100644 --- a/source/blender/blenkernel/intern/image.c +++ b/source/blender/blenkernel/intern/image.c @@ -1161,7 +1161,7 @@ void BKE_stamp_buf(Scene *scene, unsigned char *rect, float *rectf, int width, i } if (stamp_data.strip[0]) { - BLF_width_and_height(mono, stamp_data.scene, &w, &h); h= h_fixed; + BLF_width_and_height(mono, stamp_data.strip, &w, &h); h= h_fixed; /* Top right corner, with an extra space because blenfont is too strict! */ x= width - w - pad; -- cgit v1.2.3