Fix out-of-clip-area dialog paint with collapsed archive.

This commit is contained in:
John Preston 2023-03-17 16:48:22 +04:00
parent 2928c7b4b5
commit 84c75f4a74

View file

@ -657,7 +657,7 @@ void InnerWidget::paintEvent(QPaintEvent *e) {
p.translate(0, top - skippedTop);
for (auto e = list.cend(); i != e; ++i) {
auto row = (*i);
if (top - skippedTop >= dialogsClip.top() - skip + dialogsClip.height()) {
if (top >= dialogsClip.top() - skip + dialogsClip.height()) {
break;
}