From ec016fc167fa3306e37090a337f7b40439c35b48 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 18 Mar 2011 17:46:14 -0400 Subject: Revert 7c00afe0392728279e18baee30be63440c871c25 partially. --- NoteEditor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'NoteEditor.cpp') diff --git a/NoteEditor.cpp b/NoteEditor.cpp index 8293d61..bddfd5c 100644 --- a/NoteEditor.cpp +++ b/NoteEditor.cpp @@ -17,7 +17,8 @@ NoteEditor::NoteEditor(const QString &title, QWidget *parent) : setUnifiedTitleAndToolBarOnMac(true); m_editor = new QTextEdit; - m_editor->setText("

" + title + "

" + tr("notes...") + "

"); + m_editor->setFontFamily("CMU Typewriter Text Variable Width"); + m_editor->setText("

" + title + "

" + tr("notes...") + "

"); setCentralWidget(m_editor); QDockWidget *sideInstructions = new QDockWidget(tr("Instructions")); -- cgit v1.2.3-59-g8ed1b