[Bf-blender-cvs] [05226e1512c] master: Fix T68122: Settings for Select root and Select tip in particle edit mode are missing

Sebastian Parborg noreply at git.blender.org
Fri Aug 2 16:03:09 CEST 2019


Commit: 05226e1512cbe53505dac65a21a184009963672b
Author: Sebastian Parborg
Date:   Fri Aug 2 16:02:16 2019 +0200
Branches: master
https://developer.blender.org/rB05226e1512cbe53505dac65a21a184009963672b

Fix T68122: Settings for Select root and Select tip in particle edit mode are missing

Do not hide the redo window for root/tip select anymore.

===================================================================

M	source/blender/editors/physics/particle_edit.c

===================================================================

diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c
index e6870cda19d..da522d22a02 100644
--- a/source/blender/editors/physics/particle_edit.c
+++ b/source/blender/editors/physics/particle_edit.c
@@ -1943,7 +1943,7 @@ void PARTICLE_OT_select_roots(wmOperatorType *ot)
   ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
   /* properties */
-  WM_operator_properties_select_action(ot, SEL_SELECT, true);
+  WM_operator_properties_select_action(ot, SEL_SELECT, false);
 }
 
 /************************ select tip operator ************************/
@@ -2014,7 +2014,7 @@ void PARTICLE_OT_select_tips(wmOperatorType *ot)
   ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
   /* properties */
-  WM_operator_properties_select_action(ot, SEL_SELECT, true);
+  WM_operator_properties_select_action(ot, SEL_SELECT, false);
 }
 
 /*********************** select random operator ************************/



More information about the Bf-blender-cvs mailing list