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:
authorCampbell Barton <ideasman42@gmail.com>2009-07-30 05:52:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-07-30 05:52:00 +0400
commit39ea55fff1e0ce362bb5e9bc958b6d651293e30d (patch)
treec94e2c02e60428d7d4115538ece8a749016501ae /source/blender/python/intern/bpy_operator.c
parent24a269a07c150d449363b455d4de89a88151d651 (diff)
Operator Copy/Paste
you can copy operator strings from buttons or the reporting interface and run them in the console. - Ctrl+C over an operator button copies its python string to the clipboard. - Paste in the console (1 line only for now). - operators run from python no longer require all arguments.
Diffstat (limited to 'source/blender/python/intern/bpy_operator.c')
-rw-r--r--source/blender/python/intern/bpy_operator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_operator.c b/source/blender/python/intern/bpy_operator.c
index 2ffa9db4027..034440d77ac 100644
--- a/source/blender/python/intern/bpy_operator.c
+++ b/source/blender/python/intern/bpy_operator.c
@@ -95,7 +95,7 @@ static PyObject *pyop_call( PyObject * self, PyObject * args)
RNA_pointer_create(NULL, ot->srna, NULL, &ptr);
if(kw && PyDict_Size(kw))
- error_val= pyrna_pydict_to_props(&ptr, kw, "Converting py args to operator properties: ");
+ error_val= pyrna_pydict_to_props(&ptr, kw, 0, "Converting py args to operator properties: ");
if (error_val==0) {