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:
Diffstat (limited to 'source/blender/python/api2_2x/Window.c')
-rw-r--r--source/blender/python/api2_2x/Window.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/source/blender/python/api2_2x/Window.c b/source/blender/python/api2_2x/Window.c
index 8b89296dcde..a7ad2581f45 100644
--- a/source/blender/python/api2_2x/Window.c
+++ b/source/blender/python/api2_2x/Window.c
@@ -889,20 +889,23 @@ static PyObject *M_Window_EditMode( PyObject * self, PyObject * args )
short status = -1;
char *undo_str = "From script";
int undo_str_len = 11;
+ int do_undo = 1;
- if( !PyArg_ParseTuple
- ( args, "|hs#", &status, &undo_str, &undo_str_len ) )
+ if( !PyArg_ParseTuple( args,
+ "|hs#i", &status, &undo_str, &undo_str_len, &do_undo ) )
return EXPP_ReturnPyObjError( PyExc_TypeError,
- "expected nothing or an int (bool) and a string as arguments" );
+ "expected optional int (bool), string and int (bool) as arguments" );
if( status >= 0 ) {
if( status ) {
if( !G.obedit )
enter_editmode( );
} else if( G.obedit ) {
- if( undo_str_len > 63 )
- undo_str[63] = '\0'; /* 64 is max */
- undo_push_mesh( undo_str ); /* use better solution after 2.34 */
+ if( do_undo && U.undosteps != 0 ) {
+ if( undo_str_len > 63 )
+ undo_str[63] = '\0'; /* 64 is max */
+ undo_push_mesh( undo_str ); /* use better solution after 2.34 */
+ }
exit_editmode( 1 );
}
}