comparison pidgin/gtkconv.c @ 27745:b9197011ddd6

merge of '1ec99cf95363c1e7c839780d51463b0c73d96e25' and '4e52f6d35023c9f4c4b5944f42784a1ac32bb0d8'
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sat, 15 Dec 2007 05:12:24 +0000
parents 2961a316058c e81d5493626c
children e13759a83714
comparison
equal deleted inserted replaced
27743:2961a316058c 27745:b9197011ddd6
6618 style = "color=\"#888a85\""; 6618 style = "color=\"#888a85\"";
6619 } else { 6619 } else {
6620 style = NULL; 6620 style = NULL;
6621 } 6621 }
6622 6622
6623 // nosuke's tab width patch
6624 if ((purple_prefs_get_int(PIDGIN_PREFS_ROOT "/conversations/tab_side") == (GTK_POS_LEFT|8)
6625 || purple_prefs_get_int(PIDGIN_PREFS_ROOT "/conversations/tab_side") == (GTK_POS_RIGHT|8))
6626 && purple_prefs_get_bool(PIDGIN_PREFS_ROOT "/conversations/trim_vertical_tabs"))
6627 ellipsis = TRUE;
6628
6629 if (ellipsis)
6630 title_tmp = pidgin_gtk_ellipsis_text(gtkconv->tab_label, title, 60, "...");
6631 else
6632 title_tmp = title;
6633
6634
6635 if (gtkconv->unseen_state == PIDGIN_UNSEEN_TEXT || 6623 if (gtkconv->unseen_state == PIDGIN_UNSEEN_TEXT ||
6636 gtkconv->unseen_state == PIDGIN_UNSEEN_NICK || 6624 gtkconv->unseen_state == PIDGIN_UNSEEN_NICK ||
6637 gtkconv->unseen_state == PIDGIN_UNSEEN_EVENT) 6625 gtkconv->unseen_state == PIDGIN_UNSEEN_EVENT)
6638 bold = TRUE; 6626 bold = TRUE;
6639 6627