mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
FormLayout cleanup
Removed empty labels in favour of a fixed height and bottom alignment.
This commit is contained in:
parent
53138d7f5c
commit
b5aa615ef5
1 changed files with 4 additions and 4 deletions
|
@ -205,7 +205,8 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
|
|||
avatarCircles_->setFixedSize(64, 48);
|
||||
|
||||
auto uiLabel_ = new QLabel{tr("INTERFACE"), this};
|
||||
uiLabel_->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed);
|
||||
uiLabel_->setFixedHeight(uiLabel_->minimumHeight() + LayoutTopMargin);
|
||||
uiLabel_->setAlignment(Qt::AlignBottom);
|
||||
uiLabel_->setFont(font);
|
||||
|
||||
for (double option = 1; option <= 3; option += 0.25)
|
||||
|
@ -242,7 +243,8 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
|
|||
themeCombo_->setCurrentIndex(themeIndex);
|
||||
|
||||
auto encryptionLabel_ = new QLabel{tr("ENCRYPTION"), this};
|
||||
encryptionLabel_->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Fixed);
|
||||
encryptionLabel_->setFixedHeight(encryptionLabel_->minimumHeight() + LayoutTopMargin);
|
||||
encryptionLabel_->setAlignment(Qt::AlignBottom);
|
||||
encryptionLabel_->setFont(font);
|
||||
|
||||
QFont monospaceFont;
|
||||
|
@ -295,7 +297,6 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
|
|||
boxWrap(tr("Read receipts"), readReceipts_);
|
||||
boxWrap(tr("Send messages as Markdown"), markdownEnabled_);
|
||||
boxWrap(tr("Desktop notifications"), desktopNotifications_);
|
||||
formLayout_->addRow(new QLabel{"", this});
|
||||
formLayout_->addRow(uiLabel_);
|
||||
formLayout_->addRow(new HorizontalLine{this});
|
||||
|
||||
|
@ -314,7 +315,6 @@ UserSettingsPage::UserSettingsPage(QSharedPointer<UserSettings> settings, QWidge
|
|||
#endif
|
||||
|
||||
boxWrap(tr("Theme"), themeCombo_);
|
||||
formLayout_->addRow(new QLabel{"", this});
|
||||
formLayout_->addRow(encryptionLabel_);
|
||||
formLayout_->addRow(new HorizontalLine{this});
|
||||
boxWrap(tr("Device ID"), deviceIdValue_);
|
||||
|
|
Loading…
Reference in a new issue