From 6df64868bab0d39a72230df44e9cf31cf3541bcf Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Fri, 18 Mar 2011 17:49:46 -0400 Subject: More explicit font. --- Introduction.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Introduction.cpp') diff --git a/Introduction.cpp b/Introduction.cpp index 8e083d2..b07cb29 100644 --- a/Introduction.cpp +++ b/Introduction.cpp @@ -18,11 +18,12 @@ Introduction::Introduction(QWidget *parent) : QGroupBox *newCompositionBox = new QGroupBox(tr("Create a New Composition")); QVBoxLayout *newCompositionBoxLayout = new QVBoxLayout; QLabel *instructions = new QLabel(tr("

Welcome to Author. To get started with your finely authored composition, please enter a title.

")); + QFont font; + font.setFamily("CMU Typewriter Text Variable Width"); + instructions->setFont(font); instructions->setWordWrap(true); newCompositionBoxLayout->addWidget(instructions); newCompositionBoxLayout->addStretch(); - QFont font; - font.setFamily("CMU Typewriter Text Variable Width"); font.setPointSize(16); font.setBold(true); m_title = new QLineEdit(defaultName()); -- cgit v1.2.3-59-g8ed1b