From 05226e1512cbe53505dac65a21a184009963672b Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Fri, 2 Aug 2019 16:02:16 +0200 Subject: 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. --- source/blender/editors/physics/particle_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors') 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 ************************/ -- cgit v1.2.3