macro's can set options for the operators they execute

changed extrude, rip and duplicate to disable proportional editing however this gives a different problem now.
Commented in transform.c
 // XXX If modal, save settings back in scene

this changes disables the option whenever the macro used used.
This commit is contained in:
2009-10-12 12:54:08 +00:00
parent 715f682f22
commit e36003e8e7
9 changed files with 49 additions and 23 deletions

View File

@@ -105,6 +105,12 @@ void ED_spacetypes_init(void)
spacetypes = BKE_spacetypes_list();
for(type=spacetypes->first; type; type=type->next)
type->operatortypes();
/* Macros's must go last since they reference other operators
* maybe we'll need to have them go after python operators too? */
ED_operatormacros_mesh();
ED_operatormacros_object();
}
/* called in wm.c */