# HG changeset patch # User Casey Ho # Date 1235591869 0 # Node ID d95d1fb580140527f6f0c102dedd2accc4829954 # Parent fabd8eda763da961d8118200f52a7ecfb655f61a Buddy pounce options are now in four columns instead of two. Fixes issues with height of dialog on small resolutions. diff -r fabd8eda763d -r d95d1fb58014 pidgin/gtkpounce.c --- a/pidgin/gtkpounce.c Wed Feb 04 13:57:14 2009 +0000 +++ b/pidgin/gtkpounce.c Wed Feb 25 19:57:49 2009 +0000 @@ -637,19 +637,19 @@ GTK_FILL, 0, 0, 0); gtk_table_attach(GTK_TABLE(table), dialog->signoff, 0, 1, 2, 3, GTK_FILL, 0, 0, 0); - gtk_table_attach(GTK_TABLE(table), dialog->away, 0, 1, 3, 4, + gtk_table_attach(GTK_TABLE(table), dialog->away, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); - gtk_table_attach(GTK_TABLE(table), dialog->away_return, 0, 1, 4, 5, + gtk_table_attach(GTK_TABLE(table), dialog->away_return, 1, 2, 1, 2, GTK_FILL, 0, 0, 0); - gtk_table_attach(GTK_TABLE(table), dialog->idle, 1, 2, 0, 1, + gtk_table_attach(GTK_TABLE(table), dialog->idle, 1, 2, 2, 3, GTK_FILL, 0, 0, 0); - gtk_table_attach(GTK_TABLE(table), dialog->idle_return, 1, 2, 1, 2, + gtk_table_attach(GTK_TABLE(table), dialog->idle_return, 2, 3, 0, 1, GTK_FILL, 0, 0, 0); - gtk_table_attach(GTK_TABLE(table), dialog->typing, 1, 2, 2, 3, + gtk_table_attach(GTK_TABLE(table), dialog->typing, 2, 3, 1, 2, GTK_FILL, 0, 0, 0); - gtk_table_attach(GTK_TABLE(table), dialog->typed, 1, 2, 3, 4, + gtk_table_attach(GTK_TABLE(table), dialog->typed, 2, 3, 2, 3, GTK_FILL, 0, 0, 0); - gtk_table_attach(GTK_TABLE(table), dialog->stop_typing, 1, 2, 4, 5, + gtk_table_attach(GTK_TABLE(table), dialog->stop_typing, 3, 4, 0, 1, GTK_FILL, 0, 0, 0); gtk_widget_show(dialog->signon);