Mercurial > pidgin
diff src/prefs.c @ 696:97b75ed155b0
[gaim-migrate @ 706]
option to hide im/info/chat buttons
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Wed, 16 Aug 2000 03:16:03 +0000 |
| parents | 2186b43872b7 |
| children | 8a9e9e694ba4 |
line wrap: on
line diff
--- a/src/prefs.c Wed Aug 16 02:10:18 2000 +0000 +++ b/src/prefs.c Wed Aug 16 03:16:03 2000 +0000 @@ -327,6 +327,7 @@ gaim_button(_("Show numbers in groups"), &display_options, OPT_DISP_SHOW_GRPNUM, box); gaim_button(_("Show idle times"), &display_options, OPT_DISP_SHOW_IDLETIME, box); gaim_button(_("Show buddy type icons"), &display_options, OPT_DISP_SHOW_PIXMAPS, box); + gaim_button(_("Hide IM/Info/Chat buttons"), &display_options, OPT_DISP_NO_BUTTONS, box); gaim_button(_("Show pictures on buttons"), &display_options, OPT_DISP_SHOW_BUTTON_XPM, box); gaim_button(_("Use Daemon pictures"), &display_options, OPT_DISP_DEVIL_PIXMAPS, box); @@ -1508,6 +1509,8 @@ { display_options = display_options ^ (int)option; + build_imchat_box(!(display_options & OPT_DISP_NO_BUTTONS)); + if (blist) update_button_pix(); #ifdef USE_APPLET
