mirror of https://github.com/GNOME/gimp.git
libgimpwidgets: let the size entry's spinbutton fill the available space
so we at least get a nice layout if the spinbuttons have different sizes. Makes the tool options look a bit less ugly.
This commit is contained in:
parent
be3ebbb65c
commit
dbf1d49efe
|
@ -222,7 +222,7 @@ gimp_scale_entry_new_internal (gboolean color_scale,
|
|||
|
||||
gtk_table_attach (GTK_TABLE (table), spinbutton,
|
||||
column + 2, column + 3, row, row + 1,
|
||||
GTK_SHRINK, GTK_SHRINK, 0, 0);
|
||||
GTK_FILL | GTK_SHRINK, GTK_SHRINK, 0, 0);
|
||||
gtk_widget_show (spinbutton);
|
||||
|
||||
if (tooltip || help_id)
|
||||
|
|
Loading…
Reference in New Issue