From 7c95784276fa35bb9d0c91189ebfbb8be50f6564 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 27 Aug 2010 10:02:42 +0200 Subject: Increase the size of the 'No Match Found' label It looks less crap that way. --- src/empathy-main-window.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index 381f2fd7a..9cbf61811 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -372,8 +372,13 @@ main_window_row_deleted_cb (GtkTreeModel *model, if (empathy_individual_view_is_searching ( priv->individual_view)) { - gtk_label_set_text (GTK_LABEL (priv->no_entry_label), - _("No match found")); + gchar *tmp; + + tmp = g_strdup_printf ("%s", + _("No match found")); + + gtk_label_set_markup (GTK_LABEL (priv->no_entry_label), tmp); + g_free (tmp); gtk_notebook_set_current_page ( GTK_NOTEBOOK (priv->notebook), -- cgit v1.2.3