Skip to content

Commit cd225b3

Browse files
committed
fix: adjust animation LoadSlider to fill the entire height
as title Log: as title Pms: BUG-311099
1 parent 5789f7f commit cd225b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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(), grad);
3232

3333
QWidget::paintEvent(event);
3434
}

0 commit comments

Comments
 (0)