mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 14:17:12 +02:00
Fix out-of-clip-area dialog paint with collapsed archive.
This commit is contained in:
parent
2928c7b4b5
commit
84c75f4a74
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue