1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-03 04:22:47 -05:00

Various cosmetic fixes to the GTK config box: vertical alignment of

edit box labels, Left/Right on the treeview to collapse and expand
branches, a window title, and the best treatment of wrapping text
widgets I could think of within the product-order-oriented GTK
layout model. I think this thing is now pretty much as good as it's
going to get before GTK v2 (which should fix one or two remaining
minor nasties which I really couldn't be bothered to work around in
GTK 1.2), so the next step is to actually start _using_ it.

[originally from svn r2979]
This commit is contained in:
Simon Tatham
2003-03-22 17:00:06 +00:00
parent ba7148c42b
commit c42085dc89
2 changed files with 197 additions and 128 deletions

View File

@ -375,10 +375,6 @@ static void panels_size_allocate(GtkWidget *widget, GtkAllocation *alloc)
children = children->next) {
GtkAllocation call;
/* Only take visible widgets into account. */
if (!GTK_WIDGET_VISIBLE(child))
continue;
call.x = alloc->x + border;
call.width = alloc->width - 2*border;
call.y = alloc->y + border;