Skip to content

Commit 0fd738e

Browse files
committed
fix: adjust animation LoadSlider to fill the entire height
as title Log: as title Pms: BUG-311099
1 parent 6b89891 commit 0fd738e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/widgets/dlineeditex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void LoadSlider::paintEvent(QPaintEvent *event)
2828
QLinearGradient grad(0, height() / 2, width(), height() / 2);
2929
grad.setColorAt(0.0, Qt::transparent);
3030
grad.setColorAt(1.0, m_loadSliderColor);
31-
painter.fillRect(0, 1, width(), height() - 2, grad);
31+
painter.fillRect(0, 0, width(), height() - 1, grad);
3232

3333
QWidget::paintEvent(event);
3434
}

0 commit comments

Comments
 (0)