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:
authorNicholas Bishop <nicholasbishop@gmail.com>2007-01-22 03:30:00 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2007-01-22 03:30:00 +0300
commitfef73f2b9294072b6606cfbd449fb01f72249348 (patch)
tree7517951fd8debf4c5753b01c368dcadbde615265 /source/blender/src/buttons_editing.c
parent25372193f564b2a27b7d2739c8626e9c677932dd (diff)
== Retopo ==
Fixed bug #5776, retopo - Retopo doesn't work with bezier curves * Added check for 2D curves, since those obviously can't be wrapped onto a 3D surface * Added check for bezier curves, those get processed in the same way as other curves now * Added an object flush so that curves get redrawn properly after "Retopo All" is used * Added retopo paint tooltip from ideasman
Diffstat (limited to 'source/blender/src/buttons_editing.c')
-rw-r--r--source/blender/src/buttons_editing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/buttons_editing.c b/source/blender/src/buttons_editing.c
index fca3866fdaa..9dd61343212 100644
--- a/source/blender/src/buttons_editing.c
+++ b/source/blender/src/buttons_editing.c
@@ -790,7 +790,7 @@ static void editing_panel_mesh_type(Object *ob, Mesh *me)
but= uiDefButBitC(block,TOG,1,B_NOP, "Retopo", 10,130,170,19, &G.editMesh->retopo_mode, 0,0,0,0, "Turn on the re-topology tool");
uiButSetFunc(but,retopo_toggle,ob,me);
if(G.editMesh->retopo_mode) {
- but= uiDefButBitC(block,TOG,2,B_NOP,"Paint", 10,110,55,19, &G.editMesh->retopo_mode,0,0,0,0, "");
+ but= uiDefButBitC(block,TOG,2,B_NOP,"Paint", 10,110,55,19, &G.editMesh->retopo_mode,0,0,0,0, "Draw intersecting lines in the 3d view, ENTER creates quad or tri faces, wrapped onto other objects in the 3d view.");
uiButSetFunc(but,retopo_paint_toggle,ob,me);
but= uiDefBut(block,BUT,B_NOP,"Retopo All", 65,110,115,19, 0,0,0,0,0, "Apply the re-topology tool to all selected vertices");
uiButSetFunc(but,retopo_do_all_cb,ob,me);