[xy_grid] made -1 seed fixing apply to Var. seed too

This commit is contained in:
RnDMonkey 2022-09-30 18:02:46 -07:00
parent 84e97a98c5
commit 70931652a4
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ class Script(scripts.Script):
ys = process_axis(y_opt, y_values) ys = process_axis(y_opt, y_values)
def fix_axis_seeds(axis_opt, axis_list): def fix_axis_seeds(axis_opt, axis_list):
if axis_opt.label == 'Seed': if axis_opt.label == 'Seed' or 'Var. seed':
return [int(random.randrange(4294967294)) if val is None or val == '' or val == -1 else val for val in axis_list] return [int(random.randrange(4294967294)) if val is None or val == '' or val == -1 else val for val in axis_list]
else: else:
return axis_list return axis_list