diff options
author | Sadrul Habib Chowdhury <sadrul@pidgin.im> | 2008-10-31 07:59:46 +0000 |
---|---|---|
committer | Sadrul Habib Chowdhury <sadrul@pidgin.im> | 2008-10-31 07:59:46 +0000 |
commit | d3cc5bf24a5f759be9b7a83e12e8229196ca8e34 (patch) | |
tree | 71a090201ae21d68b0825085fefebf9bc2748fb0 /pidgin/gtkblist.c | |
parent | 65a637da9cd60700ec178cde1ed3dd24e0695f46 (diff) | |
parent | 7902d6c9d6e8608a7147949eaa1838206a3b14ea (diff) | |
download | pidgin-sadrul.struct.hiding.tar.gz |
propagate from branch 'im.pidgin.pidgin' (head 328a7b5211ba8112c8978d5b81f5e39bf2ce2596)sadrul.struct.hiding
to branch 'local.struct.hiding' (head ee0f2a4594bf5beb531faa4978a7a450903a6017)
Diffstat (limited to 'pidgin/gtkblist.c')
-rw-r--r-- | pidgin/gtkblist.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/pidgin/gtkblist.c b/pidgin/gtkblist.c index 17a076c129..663454fe51 100644 --- a/pidgin/gtkblist.c +++ b/pidgin/gtkblist.c @@ -4663,8 +4663,6 @@ add_error_dialog(PidginBuddyList *gtkblist, { PidginBuddyListPrivate *priv = PIDGIN_BUDDY_LIST_GET_PRIVATE(gtkblist); gtk_container_add(GTK_CONTAINER(priv->error_scrollbook), dialog); - - set_urgent(); } static GtkWidget * @@ -4811,7 +4809,6 @@ update_generic_error_message(PurpleAccount *account, GTK_CONTAINER(priv->error_scrollbook), account); pidgin_mini_dialog_set_description(PIDGIN_MINI_DIALOG(mini_dialog), description); - set_urgent(); } @@ -4967,8 +4964,6 @@ add_to_signed_on_elsewhere(PurpleAccount *account) gtk_widget_show_all(account_label); update_signed_on_elsewhere_minidialog_title(); - - set_urgent(); } static void @@ -4994,7 +4989,6 @@ update_signed_on_elsewhere_tooltip(PurpleAccount *account, GtkContainer *c = GTK_CONTAINER(priv->signed_on_elsewhere->contents); GtkWidget *label = find_child_widget_by_account(c, account); gtk_widget_set_tooltip_text(label, description); - set_urgent(); #endif } @@ -7183,7 +7177,10 @@ void pidgin_blist_init(void) purple_prefs_add_int(PIDGIN_PREFS_ROOT "/blist/y", 0); purple_prefs_add_int(PIDGIN_PREFS_ROOT "/blist/width", 250); /* Golden ratio, baby */ purple_prefs_add_int(PIDGIN_PREFS_ROOT "/blist/height", 405); /* Golden ratio, baby */ +#if !GTK_CHECK_VERSION(2,14,0) + /* This pref is used in pidgintooltip.c. */ purple_prefs_add_int(PIDGIN_PREFS_ROOT "/blist/tooltip_delay", 500); +#endif /* Register our signals */ purple_signal_register(gtk_blist_handle, "gtkblist-hiding", |