Re: size of table cells
- From: Havoc Pennington <hp redhat com>
- To: Ignacio Nodal <inodal teleline es>
- Cc: GTK-List <gtk-list gnome org>
- Subject: Re: size of table cells
- Date: 24 May 2001 01:05:06 -0400
Ignacio Nodal <inodal teleline es> writes:
> table = gtk_table_new (10, 1, FALSE);
> gtk_table_attach_defaults(GTK_TABLE(table), widget, 0,1, 0,1);
> gtk_table_attach_defaults(GTK_TABLE(table), separator, 0,1, 1,2);
>
> gtk_table_attach_defaults(GTK_TABLE(table), widget2, 0,1, 2,3);
> gtk_table_attach_defaults(GTK_TABLE(table), separator2, 0,1, 3,4);
...
>
> But so, all widgets have the same "height", what am I doing wrong?
>
Don't use attach_defaults(), use plain attach(). attach_defaults()
will set your separators to GTK_EXPAND | GTK_FILL so they'll get too
much space.
Havoc
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]