summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2017-11-20 16:07:10 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2017-11-20 16:07:10 -0600
commit530fd47a29c5e9f8fcfb578a1685a991c7b355ac (patch)
treedc41e15efc79987790d47a5bf06628cf55207924
parent80e3da79f5f805b61169ef40400c14010312abfd (diff)
downloadhorizon-qt5-530fd47a29c5e9f8fcfb578a1685a991c7b355ac.tar.gz
horizon-qt5-530fd47a29c5e9f8fcfb578a1685a991c7b355ac.tar.bz2
horizon-qt5-530fd47a29c5e9f8fcfb578a1685a991c7b355ac.tar.xz
horizon-qt5-530fd47a29c5e9f8fcfb578a1685a991c7b355ac.zip
Fix width of wizard by reeling in label text
-rw-r--r--horizonwizard.cc2
-rw-r--r--networkingpage.cc4
-rw-r--r--softwarepage.cc8
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."));