mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Apply suggestions from code review
This commit is contained in:
parent
ebe0cd79d7
commit
d13a1c6494
1 changed files with 2 additions and 2 deletions
|
@ -193,7 +193,7 @@ LoginPage::loginError(const QString &msg)
|
|||
auto rect = QFontMetrics(font()).boundingRect(msg);
|
||||
int width = rect.width();
|
||||
int height = rect.height();
|
||||
error_label_->setFixedHeight(qCeil(width / 200 * height));
|
||||
error_label_->setFixedHeight(qCeil(width / 200) * height);
|
||||
error_label_->setText(msg);
|
||||
}
|
||||
|
||||
|
@ -211,7 +211,7 @@ LoginPage::isMatrixIdValid()
|
|||
QRegularExpressionValidator v(QRegularExpression("@.+?:.{3,}"), this);
|
||||
QString s = matrixid_input_->text();
|
||||
int pos = 0;
|
||||
return v.validate(s, pos);
|
||||
return v.validate(s, pos) == QValidator::Acceptable;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue