Set min job priority to 1

Previously the minimum was 0, but the server only accepts 1 and up.
This commit is contained in:
Sybren A. Stüvel 2019-03-01 14:36:41 +01:00
parent f7396350db
commit 12eaaa5bae

View File

@ -1203,7 +1203,7 @@ def register():
scene.flamenco_render_job_priority = IntProperty(
name='Job Priority',
min=0,
min=1,
default=50,
max=100,
description='Higher numbers mean higher priority'