changeset 1296:11e5b1220028

[gaim-migrate @ 1306] made the pixmaps work correctly committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 18 Dec 2000 23:31:04 +0000
parents 13e68fb13744
children aa6a0fe8e03f
files src/prefs.c
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/prefs.c	Mon Dec 18 23:13:45 2000 +0000
+++ b/src/prefs.c	Mon Dec 18 23:31:04 2000 +0000
@@ -2023,8 +2023,10 @@
 {
 	display_options = display_options ^ (int)option;
 
-	if (blist && ((int)option == OPT_DISP_NO_BUTTONS))
+	if (blist && ((int)option == OPT_DISP_NO_BUTTONS)) {
 		build_imchat_box(!(display_options & OPT_DISP_NO_BUTTONS));
+		update_button_pix();
+	}
 
 	if (blist && ((int)option == OPT_DISP_SHOW_GRPNUM))
 		update_num_groups();
@@ -2032,6 +2034,9 @@
 	if (blist && ((int)option == OPT_DISP_NO_MT_GRP))
 		toggle_show_empty_groups();
 
+	if (blist && ((int)option == OPT_DISP_SHOW_BUTTON_XPM))
+		update_button_pix();
+
 #ifdef USE_APPLET
 	update_pixmaps();
 #endif