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.
This commit is contained in:
Sebastian Parborg 2019-08-02 16:02:16 +02:00
parent cb1b7e8a48
commit 05226e1512
Notes: blender-bot 2023-02-14 11:08:33 +01:00
Referenced by issue #68122, Settings for Select root and Select tip in particle edit mode are missing
1 changed files with 2 additions and 2 deletions

View File

@ -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 ************************/