aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-04-21 11:07:48 +0800
committerJonny Lamb <jonny.lamb@collabora.co.uk>2009-04-24 08:52:49 +0800
commitdced9a5c90939b1be6a893bd8135bfdd5ae3b557 (patch)
treeb60fae9f54b1c45cc4667c6478923a9b16df6a73
parent588532480256c991bf976dba129b9ec2eedb89ec (diff)
downloadgsoc2013-empathy-dced9a5c90939b1be6a893bd8135bfdd5ae3b557.tar
gsoc2013-empathy-dced9a5c90939b1be6a893bd8135bfdd5ae3b557.tar.gz
gsoc2013-empathy-dced9a5c90939b1be6a893bd8135bfdd5ae3b557.tar.bz2
gsoc2013-empathy-dced9a5c90939b1be6a893bd8135bfdd5ae3b557.tar.lz
gsoc2013-empathy-dced9a5c90939b1be6a893bd8135bfdd5ae3b557.tar.xz
gsoc2013-empathy-dced9a5c90939b1be6a893bd8135bfdd5ae3b557.tar.zst
gsoc2013-empathy-dced9a5c90939b1be6a893bd8135bfdd5ae3b557.zip
Display debug message as monospace.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r--src/empathy-debug-dialog.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-debug-dialog.c b/src/empathy-debug-dialog.c
index ba20ae8b0..eab7e5a00 100644
--- a/src/empathy-debug-dialog.c
+++ b/src/empathy-debug-dialog.c
@@ -573,6 +573,9 @@ debug_dialog_constructor (GType type,
-1, _("Category"), renderer, "text", COL_DEBUG_CATEGORY, NULL);
gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
-1, _("Level"), renderer, "text", COL_DEBUG_LEVEL_STRING, NULL);
+
+ renderer = gtk_cell_renderer_text_new ();
+ g_object_set (renderer, "family", "Monospace", NULL);
gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (priv->view),
-1, _("Message"), renderer, "text", COL_DEBUG_MESSAGE, NULL);