summaryrefslogtreecommitdiff
path: root/ui/qt5/inputpage.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/inputpage.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/inputpage.cc')
-rw-r--r--ui/qt5/inputpage.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/qt5/inputpage.cc b/ui/qt5/inputpage.cc
index 009fa86..a02def6 100644
--- a/ui/qt5/inputpage.cc
+++ b/ui/qt5/inputpage.cc
@@ -34,6 +34,7 @@ InputPage::InputPage(QWidget *parent) : HorizonWizardPage(parent) {
setTitle(tr("Keyboard Layout"));
descLabel = new QLabel(tr("Choose the layout of your keyboard."));
+ descLabel->setWordWrap(true);
/* REQ: UI.Input.LayoutList */
layoutList = new QListWidget(this);