# HG changeset patch # User Christian Hammond # Date 1037730029 0 # Node ID 4faf2a9753cb936cbd3339a5a7986f7e26238ee6 # Parent f118d61fb89af1656c46cf0ae64166c75cea9cfb [gaim-migrate @ 4177] People complain about accidentally hitting the X button. Let's see if this helps. committer: Tailor Script diff -r f118d61fb89a -r 4faf2a9753cb src/buddy_chat.c --- a/src/buddy_chat.c Tue Nov 19 17:54:56 2002 +0000 +++ b/src/buddy_chat.c Tue Nov 19 18:20:29 2002 +0000 @@ -1248,7 +1248,7 @@ cont = gtk_vbox_new(FALSE, 5); gtk_container_set_border_width(GTK_CONTAINER(cont), 5); - tabby = gtk_hbox_new(FALSE, 0); + tabby = gtk_hbox_new(FALSE, 5); b->close = gtk_button_new(); gtk_widget_set_size_request(GTK_WIDGET(b->close), 16, 16); gtk_container_add(GTK_CONTAINER(b->close), gtk_image_new_from_stock(GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU)); diff -r f118d61fb89a -r 4faf2a9753cb src/conversation.c --- a/src/conversation.c Tue Nov 19 17:54:56 2002 +0000 +++ b/src/conversation.c Tue Nov 19 18:20:29 2002 +0000 @@ -2798,7 +2798,7 @@ gtk_container_set_border_width(GTK_CONTAINER(cont), 5); /* this doesn't matter since we're resetting the name once we're out of the if */ /* gtk_notebook_insert_page(GTK_NOTEBOOK(convo_notebook), cont, gtk_label_new(c->name),*/ - tabby = gtk_hbox_new(FALSE, 0); + tabby = gtk_hbox_new(FALSE, 5); c->close = gtk_button_new(); gtk_widget_set_size_request(GTK_WIDGET(c->close), 16, 16); gtk_container_add(GTK_CONTAINER(c->close), gtk_image_new_from_stock(GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU));