libgimp: there was an "else" missing in the commit below

This commit is contained in:
Michael Natterer 2025-05-31 17:00:33 +02:00
parent 0d08a3c532
commit 76e82d5572

View file

@ -1328,7 +1328,7 @@ gimp_procedure_dialog_get_spin_scale (GimpProcedureDialog *dialog,
minimum = (gdouble) pspecint->minimum;
maximum = (gdouble) pspecint->maximum;
}
if (G_PARAM_SPEC_TYPE (pspec) == G_TYPE_PARAM_UINT)
else if (G_PARAM_SPEC_TYPE (pspec) == G_TYPE_PARAM_UINT)
{
GParamSpecUInt *pspecuint = (GParamSpecUInt *) pspec;