don't hardcode the attach coords for the fixed containing the dynamics
2008-08-26 Michael Natterer <mitch@gimp.org> * app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): don't hardcode the attach coords for the fixed containing the dynamics labels but use the table's real width instead. Fixes broken table layout in the airbrush options. svn path=/trunk/; revision=26771
This commit is contained in:

committed by
Michael Natterer

parent
55db28831c
commit
92cbcd03b2
@ -1,3 +1,10 @@
|
||||
2008-08-26 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/tools/gimppaintoptions-gui.c (gimp_paint_options_gui): don't
|
||||
hardcode the attach coords for the fixed containing the dynamics
|
||||
labels but use the table's real width instead. Fixes broken table
|
||||
layout in the airbrush options.
|
||||
|
||||
2008-08-26 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/base/pixel-surround.c: attempt to fix the newly introduced
|
||||
|
@ -228,7 +228,7 @@ gimp_paint_options_gui (GimpToolOptions *tool_options)
|
||||
* label positions in RTL mode.
|
||||
*/
|
||||
fixed = gtk_fixed_new ();
|
||||
gtk_table_attach (GTK_TABLE (table), fixed, 0, 6, 0, 1,
|
||||
gtk_table_attach (GTK_TABLE (table), fixed, 0, n_dynamics + 2, 0, 1,
|
||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||
gtk_widget_show (fixed);
|
||||
|
||||
|
Reference in New Issue
Block a user