[empathy: 2/4] Increase the size of the 'No Match Found' label



commit 7c95784276fa35bb9d0c91189ebfbb8be50f6564
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Fri Aug 27 10:02:42 2010 +0200

    Increase the size of the 'No Match Found' label
    
    It looks less crap that way.

 src/empathy-main-window.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c
index 381f2fd..9cbf618 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 ("<b><span size='xx-large'>%s</span></b>",
+				_("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),



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]