diff options
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()); |
