# HG changeset patch # User Nathan Walp # Date 1060194125 0 # Node ID 0587dd97f70088856ed09ab2e64d7d0a82778392 # Parent 2a4b93b57518be27e52961ee7ba3cf5fe1e56b41 [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 diff -r 2a4b93b57518 -r 0587dd97f700 src/gtkconv.c --- 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) {