diff options
| author | 2011-03-18 17:49:46 -0400 | |
|---|---|---|
| committer | 2011-03-18 17:49:46 -0400 | |
| commit | 6df64868bab0d39a72230df44e9cf31cf3541bcf (patch) | |
| tree | ad456c13f7060b74ea4b55d7fc6d0728e71c366f /Introduction.cpp | |
| parent | Revert 7c00afe0392728279e18baee30be63440c871c25 partially. (diff) | |
| download | Author-6df64868bab0d39a72230df44e9cf31cf3541bcf.tar.xz Author-6df64868bab0d39a72230df44e9cf31cf3541bcf.zip | |
More explicit font.
Diffstat (limited to 'Introduction.cpp')
| -rw-r--r-- | Introduction.cpp | 5 |
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()); |
