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
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-04-28 17:33:52 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-04-28 17:33:52 +0400
commita0b2195a8d87fffec2690d8477a596c5e028a3d0 (patch)
tree65c8fa7c268d8480f300229115408a7f0b28ec07 /source/blender/src/header_image.c
parent514580d39ddfcf682f5fd57342a4f2c5098d9538 (diff)
Fix for bug #9652: "draw zbuffer values" in the image editor did
not work correct.
Diffstat (limited to 'source/blender/src/header_image.c')
-rw-r--r--source/blender/src/header_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/header_image.c b/source/blender/src/header_image.c
index d4e5dd70777..bd170d646eb 100644
--- a/source/blender/src/header_image.c
+++ b/source/blender/src/header_image.c
@@ -1286,7 +1286,7 @@ void image_buttons(void)
}
if(ibuf) {
if(ibuf->zbuf || ibuf->zbuf_float || (ibuf->channels==1)) {
- uiDefIconButBitI(block, TOG, SI_SHOW_ZBUF, B_SIMA_SHOW_ZBUF, ICON_SOLID, xco,0,XIC,YIC, &G.sima->flag, 0, 0, 0, 0, "Draws zbuffer values");
+ uiDefIconButBitI(block, TOG, SI_SHOW_ZBUF, B_SIMA_SHOW_ZBUF, ICON_SOLID, xco,0,XIC,YIC, &G.sima->flag, 0, 0, 0, 0, "Draws zbuffer values (mapped from camera clip start to end)");
xco+= XIC;
}
}