diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-27 16:02:42 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-08-27 16:02:45 +0800 |
commit | 7c95784276fa35bb9d0c91189ebfbb8be50f6564 (patch) | |
tree | 661ea9fe73f341ed3a2a15f547e9e00777e6978a | |
parent | ab97f58c9a4bf3b0230693f09c76e6de5a23d3fe (diff) | |
download | gsoc2013-empathy-7c95784276fa35bb9d0c91189ebfbb8be50f6564.tar gsoc2013-empathy-7c95784276fa35bb9d0c91189ebfbb8be50f6564.tar.gz gsoc2013-empathy-7c95784276fa35bb9d0c91189ebfbb8be50f6564.tar.bz2 gsoc2013-empathy-7c95784276fa35bb9d0c91189ebfbb8be50f6564.tar.lz gsoc2013-empathy-7c95784276fa35bb9d0c91189ebfbb8be50f6564.tar.xz gsoc2013-empathy-7c95784276fa35bb9d0c91189ebfbb8be50f6564.tar.zst gsoc2013-empathy-7c95784276fa35bb9d0c91189ebfbb8be50f6564.zip |
Increase the size of the 'No Match Found' label
It looks less crap that way.
-rw-r--r-- | 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 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 ("<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), |