Get rid of implicit conversion in text input height calculation

This commit is contained in:
Vladyslav Tronko 2019-03-03 20:34:57 +02:00
parent 0c53a87488
commit d2a28072f6
1 changed files with 2 additions and 2 deletions

View File

@ -448,8 +448,8 @@ TextInputWidget::TextInputWidget(QWidget *parent)
QFont f;
f.setPointSizeF(f.pointSizeF());
const int fontHeight = QFontMetrics(f).height();
const int contentHeight = fontHeight * 2.5;
const int InputHeight = fontHeight * 1.5;
const int contentHeight = static_cast<int>(fontHeight * 2.5);
const int InputHeight = static_cast<int>(fontHeight * 1.5);
setFixedHeight(contentHeight);
setCursor(Qt::ArrowCursor);