libgimp: coding style fix.
This commit is contained in:
parent
ec9c60ffcd
commit
ef69089881
1 changed files with 5 additions and 5 deletions
|
|
@ -1513,11 +1513,11 @@ gimp_procedure_dialog_get_spin_scale (GimpProcedureDialog *dialog,
|
|||
|
||||
if (G_PARAM_SPEC_TYPE (pspec) == G_TYPE_PARAM_UINT ||
|
||||
G_PARAM_SPEC_TYPE (pspec) == G_TYPE_PARAM_INT)
|
||||
{
|
||||
digits = 0;
|
||||
step = MAX(step, 1.f);
|
||||
page = MAX(page, step);
|
||||
}
|
||||
{
|
||||
digits = 0;
|
||||
step = MAX (step, 1.f);
|
||||
page = MAX (page, step);
|
||||
}
|
||||
|
||||
widget = gimp_prop_spin_scale_new (G_OBJECT (priv->config),
|
||||
property, step, page, digits);
|
||||
|
|
|
|||
Loading…
Reference in a new issue