From 5fd8bf412017f07d25459b0efd72c88a420bd50f Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 6 Jan 2012 15:06:47 +0100 Subject: [PATCH] set the presence message as a tooltip on its label So user can still read the full message if it has been ellipsized. https://bugzilla.gnome.org/show_bug.cgi?id=663627 --- src/empathy-accounts-dialog.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index 13e8f617..fc3e53a3 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -212,6 +212,9 @@ accounts_dialog_status_infobar_set_message (EmpathyAccountsDialog *dialog, message_markup = g_markup_printf_escaped ("%s", message); gtk_label_set_markup (GTK_LABEL (priv->label_status), message_markup); + + gtk_widget_set_tooltip_text (priv->label_status, message); + g_free (message_markup); } -- 2.39.2