pidgin.next.minor: d58ff771: Buddy pounce options are now in four col...
caseyho at pidgin.im
caseyho at pidgin.im
Wed Feb 25 15:00:38 EST 2009
-----------------------------------------------------------------
Revision: d58ff77171d3eeecdd43e767ffa203e71c5a7a52
Ancestor: d22596ca08b991a75972575ceba943ee6664fac5
Author: caseyho at pidgin.im
Date: 2009-02-25T19:57:49
Branch: im.pidgin.pidgin.next.minor
URL: http://d.pidgin.im/viewmtn/revision/info/d58ff77171d3eeecdd43e767ffa203e71c5a7a52
Modified files:
pidgin/gtkpounce.c
ChangeLog:
Buddy pounce options are now in four columns instead of two. Fixes issues with height of dialog on small resolutions.
-------------- next part --------------
============================================================
--- pidgin/gtkpounce.c fb2c31b260cd5c3d062ed1793553afd62ec38d85
+++ pidgin/gtkpounce.c a7998d84680a7da59f25bde555e8984244cc6fa5
@@ -637,19 +637,19 @@ pidgin_pounce_editor_show(PurpleAccount
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);
More information about the Commits
mailing list