summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan de Groot <groot@kde.org>2019-02-11 18:18:34 -0500
committerAdriaan de Groot <groot@kde.org>2019-02-11 18:18:34 -0500
commitebc9a00bcf810bd3f98662af00258425bc46cc27 (patch)
treea1a979786337e2e0f1ab3007614f2e4e8169cce2
parent1adf4da736bb17dcb6479a0efb9b56485537beae (diff)
[users] Massage text widths
- Make the explanations about 3 times as wide as the text-boxes that they are explaining. This is partly moot because the text-boxes have fixed pixel sizes in the designer file, but keep it flexible for now.
-rw-r--r--src/modules/users/UsersPage.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/modules/users/UsersPage.cpp b/src/modules/users/UsersPage.cpp
index 04b851cf9..00e15b69d 100644
--- a/src/modules/users/UsersPage.cpp
+++ b/src/modules/users/UsersPage.cpp
@@ -99,6 +99,13 @@ UsersPage::UsersPage( QWidget* parent )
setWriteRootPassword( true );
ui->checkBoxReusePassword->setChecked( true );
+ // Don't expand the explanations to "stupid wide", but keep them vaguely as-wide-as
+ // the things they are explaining.
+ int boxWidth = qMax( qMax( ui->textBoxUsername->width(), ui->textBoxHostname->width() ), ui->textBoxUserPassword->width() );
+ ui->username_extra_label_2->setMaximumWidth( 3 * boxWidth );
+ ui->hostname_extra_label_2->setMaximumWidth( 3 * boxWidth );
+ ui->password_extra_label_3->setMaximumWidth( 3 * boxWidth );
+
CALAMARES_RETRANSLATE( ui->retranslateUi( this ); )
}