Change pen style to Qt::DashLine for disabled input line

This commit is contained in:
johanneshilden 2017-10-06 14:59:16 +03:00
parent b1665177e5
commit 146de0e0a4
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ void QtMaterialTextField::paintEvent(QPaintEvent *event)
pen.setColor(inputLineColor());
if (!isEnabled())
pen.setStyle(Qt::DotLine);
pen.setStyle(Qt::DashLine);
painter.setPen(pen);
painter.setOpacity(1);