Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2007-10-30 08:58:25 +0300
committerJoshua Leung <aligorith@gmail.com>2007-10-30 08:58:25 +0300
commitb617c191aaa039a783b77769d0bd15d898adbd8c (patch)
treea2d3e80c8c96be8f34b0d1401180caebc46c5b93 /source
parent20905354fcaeabfc5138c3a8d61ed82e2f3ae052 (diff)
Bugfix #7685: Stamp info displays incorrect label for scene.
Copy+Paste error, wrong prefix used. Patch provided by Malcolm Tredinnick (malcolmt)
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c
index d4b53e43b65..17a4dfd3db9 100644
--- a/source/blender/blenkernel/intern/image.c
+++ b/source/blender/blenkernel/intern/image.c
@@ -881,7 +881,7 @@ static void stampdata(StampData *stamp_data, int do_prefix)
}
if (G.scene->r.stamp & R_STAMP_SCENE) {
- if (do_prefix) sprintf(stamp_data->scene, "Camera %s", G.scene->id.name+2);
+ if (do_prefix) sprintf(stamp_data->scene, "Scene %s", G.scene->id.name+2);
else sprintf(stamp_data->scene, "%s", G.scene->id.name+2);
} else {
stamp_data->scene[0] = '\0';