Problem with Dia Comment/"scrolled_window"



Hi,

I recently upgraded to Ubuntu 11.10 and noticed that the Comment section in the attributes and operations tab were way too small to see anything. See dia.png to see what I mean.

I checked out the source code and seem to have found a fix. See dia_fixed.png.

This is the code before which doesn't work, from class_attributes_dialog.c:
gtk_table_attach (GTK_TABLE (table), scrolledwindow, 1,2,3,4, GTK_FILL | GTK_EXPAND,0, 0,0);

This is what I changed to get it to show the comment entry (see dia_fixed.png) gtk_table_attach (GTK_TABLE (table), scrolledwindow, 1,2,3,4, (GtkAttachOptions)GTK_FILL, (GtkAttachOptions)GTK_FILL, 0, 0);

I don't know how many other people having the same problem, but this should fix it.

Thanks

Attachment: dia.png
Description: PNG image



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]