From 28ca3ebc5f81347cad53f9a8b946166f469fa7da Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 29 Mar 2016 01:20:45 +1100 Subject: Fix T47969: Select Random always uses same seed Increment the seed on each use, otherwise calling again selects the same order, unless you manually adjust the seed. --- source/blender/editors/metaball/mball_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/metaball') diff --git a/source/blender/editors/metaball/mball_edit.c b/source/blender/editors/metaball/mball_edit.c index f05414fbfa6..ed5bf4a92b4 100644 --- a/source/blender/editors/metaball/mball_edit.c +++ b/source/blender/editors/metaball/mball_edit.c @@ -373,7 +373,7 @@ static int select_random_metaelems_exec(bContext *C, wmOperator *op) MetaElem *ml; const bool select = (RNA_enum_get(op->ptr, "action") == SEL_SELECT); const float randfac = RNA_float_get(op->ptr, "percent") / 100.0f; - const int seed = RNA_int_get(op->ptr, "seed"); + const int seed = WM_operator_properties_select_random_seed_increment_get(op); RNG *rng = BLI_rng_new_srandom(seed); -- cgit v1.2.3