On Tue, 2004-05-11 at 09:11, Carl Hetherington wrote:
I just installed the 20040510 snapshot - the things you guys have done with "clone", "inkscape preferences" and stroke style are very cool and useful. Thanks!
There are several things I'd like to note though.
- Look at the snapshot (attached). Some drop-down lists are smaller-sized but
the font is still sized as in bigger widgets, and on muy system I can't see the current selected option.
Confirmed here on Win32. If you remove the
gtk_widget_set_size_request (us->menu, AUX_OPTION_MENU_WIDTH, AUX_OPTION_MENU_HEIGHT);
in unit-menu.cpp things get better, but then any unit selector in a GTK table seems to be start out too big, only to shrink when you click on it. Haven't got time to investigate further.
I'm not sure exactly what code your talking about right now (and I don't have the time to go look) - but usually (if I understand what you are describing) is fixed by using a gtk_widget_show on the specific widget instead of a gtk_widget_show_all on the parent. I think that the second function creates some sort of delayed allocation of space - and the first one forces the allocation at the time of the call.
--Ted