summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-29 18:11:41 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-29 18:11:41 -0600
commitfa77e0bfc97b04448cb97980cd79861911082d2e (patch)
treed89be4ead65bc90ccffd4d56532e835a336b21c9 /ui
parentdb3d31b0cb26e7149e9cca121c6661bea9537abe (diff)
downloadhorizon-fa77e0bfc97b04448cb97980cd79861911082d2e.tar.gz
horizon-fa77e0bfc97b04448cb97980cd79861911082d2e.tar.bz2
horizon-fa77e0bfc97b04448cb97980cd79861911082d2e.tar.xz
horizon-fa77e0bfc97b04448cb97980cd79861911082d2e.zip
Qt UI: Drastically simplify text
Diffstat (limited to 'ui')
-rw-r--r--ui/qt5/firmwarepage.cc11
1 files changed, 4 insertions, 7 deletions
diff --git a/ui/qt5/firmwarepage.cc b/ui/qt5/firmwarepage.cc
index 4d5893e..3e7b757 100644
--- a/ui/qt5/firmwarepage.cc
+++ b/ui/qt5/firmwarepage.cc
@@ -21,16 +21,13 @@ FirmwarePage::FirmwarePage(QWidget *parent) : HorizonWizardPage(parent) {
loadWatermark("intro");
QLabel *descLabel = new QLabel(tr(
- "<p>Your computer may require the use of drivers which use proprietary, closed-source components (or <i>firmware</i>) in order to use certain hardware or functionality.</p>"
- "<p>Most Wi-Fi network adaptors and 3D graphics cards require proprietary firmware.</p>"
- "<p>Proprietary firmware cannot be audited for security or reliability issues due to its closed-source nature. Only install proprietary firmware if you require it.</p>"
- "<p>If you intend to use this computer to perform security-sensitive tasks, we strongly recommend that you choose not to load firmware on this computer.</p>"
- "<p>Do you want to load firmware on this computer?</p>"));
- descLabel->setTextFormat(Qt::RichText);
+ "Your computer may use hardware drivers which require proprietary, closed-source firmware in order to provide functionality.\n\n"
+ "Most Wi-Fi network adaptors and 3D graphics cards require proprietary firmware. "
+ "However, proprietary firmware cannot be audited for security or reliability issues due to its closed-source nature.\n\n"
+ "Do you want to load firmware on this computer?"));
descLabel->setWordWrap(true);
noButton = new QRadioButton(tr("&No, do not load firmware on this computer."));
- noButton->setChecked(true);
yesButton = new QRadioButton(tr("&Yes, load firmware on this computer."));
firmwareChoice = new QButtonGroup;
firmwareChoice->addButton(noButton);