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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-11-16 13:16:56 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2014-11-16 13:16:56 +0300
commitfbfdbaf2ebc9297bd392993cf731b0914ae5c585 (patch)
treea934b7ca13e9faa246ea60c930b7d75af27f594a /source/blender
parentf36785c26c14e00d3385a2f6ca0890eb8030439c (diff)
Own cleanup, sorry for the noise :/
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 6fb1679050f..aecbe629f69 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -5222,14 +5222,10 @@ static void SCULPT_OT_set_detail_size(wmOperatorType *ot)
ot->description = "Set the mesh detail (either relative or constant one, depending on current dyntopo mode)";
/* api callbacks */
- //ot->invoke = sculpt_set_detail_size_invoke;
ot->exec = sculpt_set_detail_size_exec;
- //ot->modal = sculpt_set_detail_size_modal;
ot->poll = sculpt_and_dynamic_topology_poll;
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
-
- //RNA_def_int_array(ot->srna, "location", 2, NULL, 0, SHRT_MAX, "Location", "Screen Coordinates of sampling", 0, SHRT_MAX);
}
void ED_operatortypes_sculpt(void)