summaryrefslogtreecommitdiff
path: root/ui/qt5/netdhcppage.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-12-18 15:38:36 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-12-18 15:38:36 -0600
commit0e9db4fe22f40c7ce1a10235369f1253295b4d85 (patch)
treec066186a1fa2aacc326c964482c226c7b40c8b5d /ui/qt5/netdhcppage.cc
parentbf86a55dd46aae173462137aa5a59d8e24516b83 (diff)
downloadhorizon-0e9db4fe22f40c7ce1a10235369f1253295b4d85.tar.gz
horizon-0e9db4fe22f40c7ce1a10235369f1253295b4d85.tar.bz2
horizon-0e9db4fe22f40c7ce1a10235369f1253295b4d85.tar.xz
horizon-0e9db4fe22f40c7ce1a10235369f1253295b4d85.zip
Qt UI: Make all QLabels word wrap
This is necessary in case someone needs font sizes raised. Otherwise, content may be truncated.
Diffstat (limited to 'ui/qt5/netdhcppage.cc')
-rw-r--r--ui/qt5/netdhcppage.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/qt5/netdhcppage.cc b/ui/qt5/netdhcppage.cc
index bf223f0..56a29ca 100644
--- a/ui/qt5/netdhcppage.cc
+++ b/ui/qt5/netdhcppage.cc
@@ -24,13 +24,16 @@ NetDHCPPage::NetDHCPPage(QWidget *parent) : HorizonWizardPage(parent) {
loadWatermark("network");
QLabel *overall = new QLabel(tr("Please wait while System Installation performs the following tasks:"));
+ overall->setWordWrap(true);
information = new QLabel;
information->setWordWrap(true);
addrStatus = new QLabel;
address = new QLabel(tr("Obtain a network address"));
+ address->setWordWrap(true);
inetStatus = new QLabel;
inet = new QLabel(tr("Check Internet connectivity"));
+ inet->setWordWrap(true);
QGridLayout *progressLayout = new QGridLayout;
progressLayout->addWidget(addrStatus, 0, 0);