From 530fd47a29c5e9f8fcfb578a1685a991c7b355ac Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Mon, 20 Nov 2017 16:07:10 -0600 Subject: Fix width of wizard by reeling in label text --- horizonwizard.cc | 2 +- networkingpage.cc | 4 ++-- softwarepage.cc | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/horizonwizard.cc b/horizonwizard.cc index cf9a5aa..75a5e8c 100644 --- a/horizonwizard.cc +++ b/horizonwizard.cc @@ -35,7 +35,7 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) { setWindowTitle(tr("Adélie Linux System Installation")); - setFixedSize(QSize(700, 450)); + setFixedSize(QSize(650, 450)); setOption(DisabledBackButtonOnLastPage); setOption(HaveHelpButton); diff --git a/networkingpage.cc b/networkingpage.cc index d2d4195..f663e7e 100644 --- a/networkingpage.cc +++ b/networkingpage.cc @@ -26,11 +26,11 @@ NetworkingPage::NetworkingPage(QWidget *parent) : HorizonWizardPage(parent) descLabel->setWordWrap(true); simple = new QRadioButton(tr( - "&Simple - my computer connects to the Internet directly " + "&Simple - my computer connects to the Internet directly\n" "or via a modem/router")); advanced = new QRadioButton(tr( "&Advanced - my computer connects to an enterprise " - "network or I use a\nstatic IP address, VPN, or 802.1X")); + "network\nor I use a static IP address, VPN, or 802.1X")); skip = new QRadioButton(tr( "S&kip - I don't want to connect to a network or the " "Internet right now")); diff --git a/softwarepage.cc b/softwarepage.cc index 28805e3..406fb33 100644 --- a/softwarepage.cc +++ b/softwarepage.cc @@ -15,12 +15,12 @@ SoftwarePage::SoftwarePage(QWidget *parent) : HorizonWizardPage(parent) setTitle(tr("Select Software")); descLabel = new QLabel(tr( - "You can select what software you want to install on " - "your computer.")); + "Select the software you want to install on your" + "computer. You can add more later.")); descLabel->setWordWrap(true); desktop = new QCheckBox(tr( - "&Desktop Software - Web browser, email client, media " + "&Desktop Software - browser, email client, media " "player, and more")); kde = new QCheckBox(tr( "Use the &KDE Plasma 5 desktop\nIdeal for newer computers, " @@ -30,7 +30,7 @@ SoftwarePage::SoftwarePage(QWidget *parent) : HorizonWizardPage(parent) "experience well suited to\nsmaller screens.")); lxqt = new QCheckBox(tr( "Use the &LXQt desktop\nLXQt provides a modern experience " - "similar to KDE Plasma 5\noptimised for older hardware.")); + "similar to KDE Plasma 5,\noptimised for older hardware.")); openbox = new QCheckBox(tr( "Use the &OpenBox desktop\nOpenBox is for people who are " "familiar with other Linux/Unix\ndesktop experiences.")); -- cgit v1.2.3-60-g2f50