libgimpwidgets: fix formatting in gimpscaleentry.c

This commit is contained in:
Michael Natterer 2013-06-17 00:38:29 +02:00
parent 6afc29543e
commit c8b7ce7006
1 changed files with 2 additions and 4 deletions

View File

@ -151,8 +151,8 @@ gimp_scale_entry_new_internal (gboolean color_scale,
gtk_widget_show (label);
if (! constrain &&
unconstrained_lower <= lower &&
unconstrained_upper >= upper)
unconstrained_lower <= lower &&
unconstrained_upper >= upper)
{
GtkObject *constrained_adj;
@ -238,8 +238,6 @@ gimp_scale_entry_new_internal (gboolean color_scale,
g_object_set_data (G_OBJECT (return_adj), "scale", scale);
g_object_set_data (G_OBJECT (return_adj), "spinbutton", spinbutton);
return return_adj;
}