diff --git a/indi_allsky/flask/forms.py b/indi_allsky/flask/forms.py index de550fc55..3297948b6 100644 --- a/indi_allsky/flask/forms.py +++ b/indi_allsky/flask/forms.py @@ -3387,7 +3387,7 @@ def __init__(self, *args, **kwargs): class IndiAllskyImageProcessingForm(FlaskForm): - DISABLE_PROCESSING = HiddenField('Disable processing', validators=[], default='1') # disabled by default + DISABLE_PROCESSING = BooleanField('Disable processing') CAMERA_ID = HiddenField('Camera ID', validators=[DataRequired()]) FITS_ID = HiddenField('FITS ID', validators=[DataRequired()]) NIGHT_CONTRAST_ENHANCE = BooleanField('Contrast Enhance') diff --git a/indi_allsky/flask/templates/imageprocessing.html b/indi_allsky/flask/templates/imageprocessing.html index 9bf176f60..afc5a60c0 100644 --- a/indi_allsky/flask/templates/imageprocessing.html +++ b/indi_allsky/flask/templates/imageprocessing.html @@ -48,13 +48,6 @@