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:
authorTon Roosendaal <ton@blender.org>2006-08-09 14:00:27 +0400
committerTon Roosendaal <ton@blender.org>2006-08-09 14:00:27 +0400
commitc56f04cb5f306af8ec4fe1a6f0fc309eb3fbcba9 (patch)
tree30f6c6d88982e0f697e32efb719860799d17e822 /source/blender/src/buttons_scene.c
parent6c48d7bda2963d71185ae34c7fb5aa2cb66b8f22 (diff)
Fixes I did before leaving to siggraph, couldn't commit it due to freeze:
- buffer overflow was possible with providing a file path argument longer than 256 characters. - buttons "VCol Light" and "VCol Paint" were not mutual exclusive - quicktime error menu (unable to create) had a enter in end - deleting points in CurveMapping button (like Curves node in compositor) did not give proper recalc event - edges render menu had a tooltip still mentioning the unified render
Diffstat (limited to 'source/blender/src/buttons_scene.c')
-rw-r--r--source/blender/src/buttons_scene.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/buttons_scene.c b/source/blender/src/buttons_scene.c
index 9d9783f96b5..2ba2cd4e6fa 100644
--- a/source/blender/src/buttons_scene.c
+++ b/source/blender/src/buttons_scene.c
@@ -829,11 +829,11 @@ static uiBlock *edge_render_menu(void *arg_unused)
uiBlockBeginAlign(block);
uiDefButF(block, NUMSLI, 0, "R ", 45, 50, 175,19, &G.scene->r.edgeR, 0.0, 1.0, B_EDGECOLSLI, 0,
- "For unified renderer: Colour for edges in toon shading mode.");
+ "Colour for edges in toon shading mode.");
uiDefButF(block, NUMSLI, 0, "G ", 45, 30, 175,19, &G.scene->r.edgeG, 0.0, 1.0, B_EDGECOLSLI, 0,
- "For unified renderer: Colour for edges in toon shading mode.");
+ "Colour for edges in toon shading mode.");
uiDefButF(block, NUMSLI, 0, "B ", 45, 10, 175,19, &G.scene->r.edgeB, 0.0, 1.0, B_EDGECOLSLI, 0,
- "For unified renderer: Colour for edges in toon shading mode.");
+ "Colour for edges in toon shading mode.");
uiBlockSetDirection(block, UI_TOP);