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:
authorJason Hays <jason_hays22@mymail.eku.edu>2011-09-18 21:10:28 +0400
committerJason Hays <jason_hays22@mymail.eku.edu>2011-09-18 21:10:28 +0400
commit73863a1da5436ec5f63566e40ffa07ecbb903c69 (patch)
treeda4e95ba22f325d17402625070afcf617210b079 /source/blender/editors/sculpt_paint/paint_utils.c
parente234cb463689a19436f9d5fa25111433b1d531d5 (diff)
Split do_weight_paint_vertex() to isolate the simple case.
Added a tool-tip to the "fix deforms" op. Removed code markers: "Radish"
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_utils.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_utils.c b/source/blender/editors/sculpt_paint/paint_utils.c
index e76d21a9eec..fe749011b98 100644
--- a/source/blender/editors/sculpt_paint/paint_utils.c
+++ b/source/blender/editors/sculpt_paint/paint_utils.c
@@ -358,7 +358,7 @@ void PAINT_OT_face_select_all(wmOperatorType *ot)
WM_operator_properties_select_all(ot);
}
-/* Radish */
+
static int vert_select_all_exec(bContext *C, wmOperator *op)
{
Object *ob= CTX_data_active_object(C);
@@ -367,7 +367,7 @@ static int vert_select_all_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-/* Radish */
+
void PAINT_OT_vert_select_all(wmOperatorType *ot)
{
ot->name= "Vertex Selection";
@@ -381,7 +381,7 @@ void PAINT_OT_vert_select_all(wmOperatorType *ot)
WM_operator_properties_select_all(ot);
}
-/* Radish */
+
static int vert_select_inverse_exec(bContext *C, wmOperator *UNUSED(op))
{
Object *ob= CTX_data_active_object(C);
@@ -389,7 +389,7 @@ static int vert_select_inverse_exec(bContext *C, wmOperator *UNUSED(op))
ED_region_tag_redraw(CTX_wm_region(C));
return OPERATOR_FINISHED;
}
-/* Radish */
+
void PAINT_OT_vert_select_inverse(wmOperatorType *ot)
{
ot->name= "Vertex Select Invert";