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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-09-28 06:15:08 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-09-28 06:17:32 +0400
commit99ef213dcbab68debe7047996a2e26380254d093 (patch)
tree143eae7f95591bf71043e5896b3a9d47aa2d42a4
parentc900cd3bd8ab060f34e303ae6da7edf6994223d9 (diff)
Freestyle: minor docstring revision of Operators.reset().
-rw-r--r--source/blender/freestyle/intern/python/BPy_Operators.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/python/BPy_Operators.cpp b/source/blender/freestyle/intern/python/BPy_Operators.cpp
index b96a62b85c4..d3cb44f5903 100644
--- a/source/blender/freestyle/intern/python/BPy_Operators.cpp
+++ b/source/blender/freestyle/intern/python/BPy_Operators.cpp
@@ -551,9 +551,10 @@ static PyObject *Operators_create(BPy_Operators *self, PyObject *args, PyObject
PyDoc_STRVAR(Operators_reset_doc,
".. staticmethod:: reset(delete_strokes=True)\n"
"\n"
-" Resets the stroke selection (and therefore chaining, splitting, sorting and shading)\n"
+" Resets the line stylization process to the initial state. The results of\n"
+" stroke creation are accumulated if **delete_strokes** is set to False.\n"
"\n"
-" :arg delete_strokes: Delete the strokes that are currently stored\n"
+" :arg delete_strokes: Delete the strokes that are currently stored.\n"
" :type delete_strokes: bool\n");
static PyObject *Operators_reset(BPy_Operators *self, PyObject *args, PyObject *kwds)