From b1346208726f608caefebe7f2887c2ad27cd0731 Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Sun, 13 Jan 2008 04:17:58 -0800 Subject: [PATCH] Use the preferred monospace font in the commit text widget This makes the commit text widget and the diff display widget use the same, user-specified, font. Signed-off by: David Aguilar --- ugitlibs/controllers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ugitlibs/controllers.py b/ugitlibs/controllers.py index 62ce623..03cdd2a 100644 --- a/ugitlibs/controllers.py +++ b/ugitlibs/controllers.py @@ -581,6 +581,7 @@ class Controller(QObserver): qfont = QFont() qfont.fromString(font) self.view.display_text.setFont(qfont) + self.view.commit_text.setFont(qfont) def update_ui_font(self): font = self.model.get_param('global.ugit.fontui') -- 2.11.4.GIT