From f828355cd6ccea84ea699ee524ca56f9bdd2f997 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 18 Jun 2018 17:39:35 +0200 Subject: [PATCH] Avoid assert on startup --- source/blender/editors/physics/particle_edit.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/physics/particle_edit.c b/source/blender/editors/physics/particle_edit.c index a4225e86a6e..66369d989be 100644 --- a/source/blender/editors/physics/particle_edit.c +++ b/source/blender/editors/physics/particle_edit.c @@ -4669,9 +4669,14 @@ void PE_create_particle_edit( psys = NULL; } + /* Causes assert on startup. */ +#if 0 UI_GetThemeColor3ubv(TH_EDGE_SELECT, edit->sel_col); UI_GetThemeColor3ubv(TH_WIRE, edit->nosel_col); - +#else + memset(edit->sel_col, 0xff, sizeof(edit->sel_col)); + memset(edit->nosel_col, 0x00, sizeof(edit->nosel_col)); +#endif recalc_lengths(edit); if (psys && !cache) recalc_emitter_field(depsgraph, ob, psys);