summaryrefslogtreecommitdiffstatshomepage
path: root/Introduction.cpp
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2011-03-18 17:49:46 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2011-03-18 17:49:46 -0400
commit6df64868bab0d39a72230df44e9cf31cf3541bcf (patch)
treead456c13f7060b74ea4b55d7fc6d0728e71c366f /Introduction.cpp
parentRevert 7c00afe0392728279e18baee30be63440c871c25 partially. (diff)
downloadAuthor-6df64868bab0d39a72230df44e9cf31cf3541bcf.tar.xz
Author-6df64868bab0d39a72230df44e9cf31cf3541bcf.zip
More explicit font.
Diffstat (limited to 'Introduction.cpp')
-rw-r--r--Introduction.cpp5
1 files changed, 3 insertions, 2 deletions
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("<h3>Welcome to <i>Author</i>. To get started with your finely authored composition, please enter a title.</h3>"));
+ 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());