From: <ebl...@us...> - 2006-08-20 02:13:13
|
Revision: 16895 Author: eblanton Date: 2006-08-19 19:13:05 -0700 (Sat, 19 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16895&view=rev Log Message: ----------- Make the gntgaim blist a touch more friendly for 80x24 terminals, by reducing its default height to 18 and removing a hrule. Modified Paths: -------------- trunk/console/gntblist.c Modified: trunk/console/gntblist.c =================================================================== --- trunk/console/gntblist.c 2006-08-19 23:51:43 UTC (rev 16894) +++ trunk/console/gntblist.c 2006-08-20 02:13:05 UTC (rev 16895) @@ -1092,7 +1092,7 @@ gaim_prefs_add_none(PREF_ROOT); gaim_prefs_add_none(PREF_ROOT "/size"); gaim_prefs_add_int(PREF_ROOT "/size/width", 20); - gaim_prefs_add_int(PREF_ROOT "/size/height", 20); + gaim_prefs_add_int(PREF_ROOT "/size/height", 18); gaim_prefs_add_none(PREF_ROOT "/position"); gaim_prefs_add_int(PREF_ROOT "/position/x", 0); gaim_prefs_add_int(PREF_ROOT "/position/y", 0); @@ -1295,8 +1295,6 @@ gnt_box_add_widget(GNT_BOX(ggblist->window), ggblist->tree); - gnt_box_add_widget(GNT_BOX(ggblist->window), gnt_hline_new()); - ggblist->status = gnt_combo_box_new(); gnt_box_add_widget(GNT_BOX(ggblist->window), ggblist->status); ggblist->statustext = gnt_entry_new(NULL); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |