From 99cbf9286852ca4c08f16670d3274cce49362ff6 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 30 Apr 2015 12:38:26 -0600 Subject: [PATCH] use monospace, not Fixed --- gui/logwindow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/logwindow.py b/gui/logwindow.py index 6a2467a..0de5c6f 100644 --- a/gui/logwindow.py +++ b/gui/logwindow.py @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Tom Tromey +# Copyright (C) 2013, 2015 Tom Tromey # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -36,7 +36,7 @@ class LogWindow(gui.toplevel.Toplevel): self.window = builder.get_object('logwindow') self.view = builder.get_object('textview') - self.view.modify_font(Pango.FontDescription('Fixed')) + self.view.modify_font(Pango.FontDescription('monospace')) self.buffer = builder.get_object('buffer') self.window.set_title('GDB Log @%d' % self.number)