Merge pull request #43 from vtronko/implicitconversion_fix

Get rid of implicit conversion in text input height calculation.  Thanks @vtronko
This commit is contained in:
Joseph Donofry 2019-03-03 18:48:46 -05:00 committed by GitHub
commit 6f13b0df0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);