changeset 6395:0587dd97f700

[gaim-migrate @ 6900] we can't use the display pref to check for whether to update or not because if we have the pref off, then the icon changes, and then we turn on the pref, we'd still have the initial icon. yeah. hey, it made sense in _my_ head. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Wed, 06 Aug 2003 18:22:05 +0000
parents 2a4b93b57518
children 144aa76a1513
files src/gtkconv.c
diffstat 1 files changed, 3 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkconv.c	Wed Aug 06 18:18:22 2003 +0000
+++ b/src/gtkconv.c	Wed Aug 06 18:22:05 2003 +0000
@@ -4816,8 +4816,7 @@
 
 		smiley_themeize(gtkconv->imhtml);
 
-		if (gaim_prefs_get_bool("/gaim/gtk/conversations/icons_on_tabs"))
-			update_tab_icon(conv);
+		update_tab_icon(conv);
 	}
 	else if (type == GAIM_CONV_UPDATE_TYPING ||
 			 type == GAIM_CONV_UPDATE_UNSEEN) {
@@ -4881,12 +4880,10 @@
 			 type == GAIM_CONV_ACCOUNT_OFFLINE) {
 
 		generate_send_as_items(win, NULL);
-		if (gaim_prefs_get_bool("/gaim/gtk/conversations/icons_on_tabs"))
-			update_tab_icon(conv);
+		update_tab_icon(conv);
 	}
 	else if (type == GAIM_CONV_UPDATE_AWAY) {
-		if (gaim_prefs_get_bool("/gaim/gtk/conversations/icons_on_tabs"))
-			update_tab_icon(conv);
+		update_tab_icon(conv);
 	}
 	else if(type == GAIM_CONV_UPDATE_ADD ||
 			type == GAIM_CONV_UPDATE_REMOVE) {